Skip to content

Commit

Permalink
PhpCsFixerConfig test
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed Jan 16, 2018
1 parent ec394ff commit 85770f2
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions tests/PhpCsFixerConfigTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php declare(strict_types=1);

namespace ApiClients\Tests\Tools\TestUtilities;

use ApiClients\Tools\TestUtilities\PhpCsFixerConfig;
use ApiClients\Tools\TestUtilities\TestCase;
use PhpCsFixer\Config;

final class PhpCsFixerConfigTest extends TestCase
{
public function testCreate()
{
self::assertInstanceOf(Config::class, PhpCsFixerConfig::create());
}
}

0 comments on commit 85770f2

Please sign in to comment.