test-classes-with-metadata.php
Namespace
Drupal\Tests\Core\FooFile
-
core/
tests/ PHPStan/ fixtures/ test-classes-with-metadata.php
View source
<?php
// phpcs:ignoreFile
declare (strict_types=1);
namespace Drupal\Tests\Core\Foo;
use PHPUnit\Framework\Attributes\RunTestsInSeparateProcesses;
use PHPUnit\Framework\TestCase;
/**
* @group metadata
* @coversNothing
*/
abstract class BarTest extends TestCase {
}
abstract class QuxTest extends TestCase {
}
/**
* With some docs.
*
* @internal
*/
abstract class SeeTest extends TestCase {
}
/**
* @group metadata
*/
class ConcreteWithAnnotationTest extends TestCase {
}
class ConcreteWithAttributeTest extends TestCase {
}
class ConcreteTest extends TestCase {
}
class NotATestClass {
}
Classes
| Title | Deprecated | Summary |
|---|---|---|
| BarTest | @group metadata @coversNothing[[api-linebreak]] | |
| ConcreteTest | ||
| ConcreteWithAnnotationTest | @group metadata | |
| ConcreteWithAttributeTest | #[RunTestsInSeparateProcesses] | |
| NotATestClass | ||
| QuxTest | ||
| SeeTest | With some docs. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.