Thanks to visit codestin.com Credit goes to github.com
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.
2 parents 594bea2 + 493ac98 commit 051f28dCopy full SHA for 051f28d
1 file changed
tests/AutoReview/ProjectCodeTest.php
@@ -58,6 +58,15 @@ final class ProjectCodeTest extends TestCase
58
\PhpCsFixer\Tokenizer\Transformers::class,
59
];
60
61
+ public function testThatClassesWithoutTestsVarIsProper()
62
+ {
63
+ $unknownClasses = array_filter(
64
+ self::$classesWithoutTests,
65
+ function ($class) { return !class_exists($class) && !trait_exists($class); }
66
+ );
67
+ $this->assertSame([], $unknownClasses);
68
+ }
69
+
70
/**
71
* @param string $className
72
*
0 commit comments