Skip to content

Commit 85770f2

Browse files
committed
PhpCsFixerConfig test
1 parent ec394ff commit 85770f2

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

tests/PhpCsFixerConfigTest.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace ApiClients\Tests\Tools\TestUtilities;
4+
5+
use ApiClients\Tools\TestUtilities\PhpCsFixerConfig;
6+
use ApiClients\Tools\TestUtilities\TestCase;
7+
use PhpCsFixer\Config;
8+
9+
final class PhpCsFixerConfigTest extends TestCase
10+
{
11+
public function testCreate()
12+
{
13+
self::assertInstanceOf(Config::class, PhpCsFixerConfig::create());
14+
}
15+
}

0 commit comments

Comments
 (0)