KernelTestSuite.php

Same filename and directory in other branches
  1. 9 core/tests/TestSuites/KernelTestSuite.php
  2. 10 core/tests/TestSuites/KernelTestSuite.php
  3. 11.x core/tests/TestSuites/KernelTestSuite.php

Namespace

Drupal\Tests\TestSuites

File

core/tests/TestSuites/KernelTestSuite.php

View source
<?php

namespace Drupal\Tests\TestSuites;

require_once __DIR__ . '/TestSuiteBase.php';

/**
 * Discovers tests for the kernel test suite.
 */
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(dirname(dirname(__DIR__)));
        $suite = new static('kernel');
        $suite->addTestsBySuiteNamespace($root, 'Kernel');
        return $suite;
    }

}

Classes

Title Deprecated Summary
KernelTestSuite Discovers tests for the kernel test suite.

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