trait TestCompatibilityTrait
Drupal's forward compatibility layer with multiple versions of PHPUnit.
Hierarchy
- trait \Drupal\TestTools\PhpUnitCompatibility\PhpUnit9\TestCompatibilityTrait
File
-
core/
tests/ Drupal/ TestTools/ PhpUnitCompatibility/ PhpUnit9/ TestCompatibilityTrait.php, line 12
Namespace
Drupal\TestTools\PhpUnitCompatibility\PhpUnit9View source
trait TestCompatibilityTrait {
/**
* Get test name.
*/
public function name() : string {
return $this->getName();
}
/**
* Gets @covers defined on the test class.
*
* @return string[]
* An array of classes listed with the @covers annotation.
*/
public function getTestClassCovers() : array {
$annotations = Test::parseTestMethodAnnotations(static::class, $this->name());
return $annotations['class']['covers'] ?? [];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
TestCompatibilityTrait::getTestClassCovers | public | function | Gets @covers defined on the test class. |
TestCompatibilityTrait::name | public | function | Get test name. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.