function KernelTestSuite::suite

Same name in other branches
  1. 9 core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite::suite()
  2. 10 core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite::suite()
  3. 11.x core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite::suite()

Factory method which loads up a suite with all kernel tests.

Return value

static The test suite.

File

core/tests/TestSuites/KernelTestSuite.php, line 18

Class

KernelTestSuite
Discovers tests for the kernel test suite.

Namespace

Drupal\Tests\TestSuites

Code

public static function suite() {
    $root = dirname(dirname(dirname(__DIR__)));
    $suite = new static('kernel');
    $suite->addTestsBySuiteNamespace($root, 'Kernel');
    return $suite;
}

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