abstract-test-classes.php
Namespace
Drupal\Tests\Core\FooFile
-
core/
tests/ PHPStan/ fixtures/ abstract-test-classes.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 {
}
Classes
Title | Deprecated | Summary |
---|---|---|
BarTest | @group metadata @coversNothing[[api-linebreak]] | |
ConcreteWithAnnotationTest | @group metadata | |
ConcreteWithAttributeTest | #[RunTestsInSeparateProcesses] | |
QuxTest | ||
SeeTest | With some docs. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.