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 4f76ee4 + 051f28d commit ea057dbCopy full SHA for ea057db
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