class UnitTestSuite in Drupal 8
Same name and namespace in other branches
- 9 core/tests/TestSuites/UnitTestSuite.php \Drupal\Tests\TestSuites\UnitTestSuite
- 10 core/tests/TestSuites/UnitTestSuite.php \Drupal\Tests\TestSuites\UnitTestSuite
Discovers tests for the unit test suite.
Hierarchy
- class \Drupal\Tests\TestSuites\TestSuiteBase extends \PHPUnit\Framework\TestSuite- class \Drupal\Tests\TestSuites\UnitTestSuite
 
Expanded class hierarchy of UnitTestSuite
File
- core/tests/ TestSuites/ UnitTestSuite.php, line 10 
Namespace
Drupal\Tests\TestSuitesView source
class UnitTestSuite extends TestSuiteBase {
  /**
   * Factory method which loads up a suite with all unit tests.
   *
   * @return static
   *   The test suite.
   */
  public static function suite() {
    $root = dirname(dirname(dirname(__DIR__)));
    $suite = new static('unit');
    $suite
      ->addTestsBySuiteNamespace($root, 'Unit');
    return $suite;
  }
}Members
| Name   | Modifiers | Type | Description | Overrides | 
|---|---|---|---|---|
| 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 | 
| UnitTestSuite:: | public static | function | Factory method which loads up a suite with all unit tests. | 
