You are here

class BuildTestSuite in Drupal 10

Same name and namespace in other branches
  1. 8 core/tests/TestSuites/BuildTestSuite.php \Drupal\Tests\TestSuites\BuildTestSuite
  2. 9 core/tests/TestSuites/BuildTestSuite.php \Drupal\Tests\TestSuites\BuildTestSuite

Discovers tests for the build test suite.

Hierarchy

Expanded class hierarchy of BuildTestSuite

File

core/tests/TestSuites/BuildTestSuite.php, line 10

Namespace

Drupal\Tests\TestSuites
View 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(__DIR__, 3);
    $suite = new static('build');
    $suite
      ->addTestsBySuiteNamespace($root, 'Build');
    return $suite;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
BuildTestSuite::suite public static function Factory method which loads up a suite with all build tests.
TestSuiteBase::addTestsBySuiteNamespace protected function Find and add tests to the suite for core and any extensions.
TestSuiteBase::findExtensionDirectories protected function Finds extensions in a Drupal installation. 1