We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec394ff commit 85770f2Copy full SHA for 85770f2
tests/PhpCsFixerConfigTest.php
@@ -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