You are here

CoreKernelTestSuite2.php in Drupal driver for SQL Server and SQL Azure 4.1.x

Same filename and directory in other branches
  1. 4.2.x dev/TestSuites/CoreKernelTestSuite2.php

File

dev/TestSuites/CoreKernelTestSuite2.php
View source
<?php

namespace Drupal\Tests\sqlsrv\TestSuites;

require_once __DIR__ . '/CITestSuiteBase.php';

/**
 * Discovers tests for the kernel test suite.
 */
final class CoreKernelTestSuite2 extends CITestSuiteBase {

  /**
   * Factory method which loads up a suite with all core kernel tests.
   *
   * @return static
   *   The test suite.
   */
  public static function suite() {
    $root = self::getDrupalRoot();
    $suite = new static('kernel');
    $suite
      ->addCoreKernelTestsByName($root, self::$coreKernelPatterns[1]);
    return $suite;
  }

}

Classes

Namesort descending Description
CoreKernelTestSuite2 Discovers tests for the kernel test suite.