You are here

CoreExtensionsFunctionalTestSuite.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/CoreExtensionsFunctionalTestSuite.php

File

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

namespace Drupal\Tests\sqlsrv\TestSuites;

require_once __DIR__ . '/CITestSuiteBase.php';

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

  /**
   * 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');
    return $suite;
  }

}

Classes

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