class BuildTestSuite in Drupal 8
Same name and namespace in other branches
- 9 core/tests/TestSuites/BuildTestSuite.php \Drupal\Tests\TestSuites\BuildTestSuite
Discovers tests for the build test suite.
Hierarchy
- class \Drupal\Tests\TestSuites\TestSuiteBase extends \PHPUnit\Framework\TestSuite
- class \Drupal\Tests\TestSuites\BuildTestSuite
Expanded class hierarchy of BuildTestSuite
File
- core/
tests/ TestSuites/ BuildTestSuite.php, line 10
Namespace
Drupal\Tests\TestSuitesView source
class BuildTestSuite extends TestSuiteBase {
/**
* Factory method which loads up a suite with all build tests.
*
* @return static
* The test suite.
*/
public static function suite() {
$root = dirname(dirname(dirname(__DIR__)));
$suite = new static('build');
$suite
->addTestsBySuiteNamespace($root, 'Build');
return $suite;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BuildTestSuite:: |
public static | function | Factory method which loads up a suite with all build tests. | |
TestSuiteBase:: |
protected | function | Find and add tests to the suite for core and any extensions. | |
TestSuiteBase:: |
protected | function | Finds extensions in a Drupal installation. | 1 |