class UnitTestSuite

Discovers tests for the unit test suite.

Hierarchy

Expanded class hierarchy of UnitTestSuite

File

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

Namespace

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

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.