You are here

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

File

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

namespace Drupal\Tests\sqlsrv\TestSuites;

require_once __DIR__ . '/TestSuiteBase.php';

/**
 * Discovers tests for the kernel test suite.
 */
final class CoreExtensions3FunctionalTestSuite 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', 2);
    return $suite;
  }

}

Classes

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