You are here

CoreExtensions4FunctionalTestSuite.php in Drupal driver for SQL Server and SQL Azure 4.0.x

File

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

namespace Drupal\Tests\sqlsrv\TestSuites;

require_once __DIR__ . '/TestSuiteBase.php';

/**
 * Discovers tests for the kernel test suite.
 */
final class CoreExtensions4FunctionalTestSuite extends TestSuiteBase {

  /**
   * Factory method which loads up a suite with all kernel tests.
   *
   * @return static
   *   The test suite.
   */
  public static function suite() {
    $root = self::getDrupalRoot();
    $suite = new static('functional');
    $suite
      ->addExtensionTestsBySuiteNamespaceAndChunk($root, 'Functional', 3);
    return $suite;
  }

}

Classes

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