You are here

CoreExtensions4KernelTestSuite.php in Drupal driver for SQL Server and SQL Azure 3.0.x

File

dev/travis/TestSuites/CoreExtensions4KernelTestSuite.php
View source
<?php

namespace Drupal\Tests\sqlsrv\TestSuites;

require_once __DIR__ . '/TestSuiteBase.php';

/**
 * Discovers tests for the kernel test suite.
 */
final class CoreExtensions4KernelTestSuite 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__, 6);
    $suite = new static('kernel');
    $suite
      ->addExtensionTestsBySuiteNamespace($root, 'Kernel', self::$coreExtensionPatterns[3]);
    return $suite;
  }

}

Classes

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