function NoClassMetadataOnAbstractTestClassesTest::testRule
File
-
core/
tests/ PHPStan/ tests/ NoClassMetadataOnAbstractTestClassesTest.php, line 33
Class
- NoClassMetadataOnAbstractTestClassesTest
- Tests NoClassMetadataOnAbstractTestClasses rule.
Namespace
Drupal\PHPStan\TestsCode
public function testRule() : void {
$this->analyse([
__DIR__ . '/../fixtures/abstract-test-classes.php',
], [
[
'Abstract test class Drupal\\Tests\\Core\\Foo\\BarTest must not add attribute PHPUnit\\Framework\\Attributes\\RunTestsInSeparateProcesses.',
16,
],
[
'Abstract test class Drupal\\Tests\\Core\\Foo\\BarTest must not add annotation @group.',
16,
],
[
'Abstract test class Drupal\\Tests\\Core\\Foo\\BarTest must not add annotation @coversNothing.',
16,
],
]);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.