class KernelTestSuite

Same name in other branches
  1. 8.9.x core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite
  2. 10 core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite
  3. 11.x core/tests/TestSuites/KernelTestSuite.php \Drupal\Tests\TestSuites\KernelTestSuite

Discovers tests for the kernel test suite.

Hierarchy

  • class \Drupal\Tests\TestSuites\TestSuiteBase extends \PHPUnit\Framework\TestSuite
    • class \Drupal\Tests\TestSuites\KernelTestSuite extends \Drupal\Tests\TestSuites\TestSuiteBase

Expanded class hierarchy of KernelTestSuite

File

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

Namespace

Drupal\Tests\TestSuites
View source
class KernelTestSuite extends TestSuiteBase {
    
    /**
     * Factory method which loads up a suite with all kernel tests.
     *
     * @return static
     *   The test suite.
     */
    public static function suite() {
        $root = dirname(__DIR__, 3);
        $suite = new static('kernel');
        $suite->addTestsBySuiteNamespace($root, 'Kernel');
        return $suite;
    }

}

Members

Title Sort descending Modifiers Object type Summary Overrides
KernelTestSuite::suite public static function Factory method which loads up a suite with all kernel 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

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