class FunctionalJavascriptTestSuite

Same name and namespace in other branches
  1. 9 core/tests/TestSuites/FunctionalJavascriptTestSuite.php \Drupal\Tests\TestSuites\FunctionalJavascriptTestSuite
  2. 8.9.x core/tests/TestSuites/FunctionalJavascriptTestSuite.php \Drupal\Tests\TestSuites\FunctionalJavascriptTestSuite
  3. 11.x core/tests/TestSuites/FunctionalJavascriptTestSuite.php \Drupal\Tests\TestSuites\FunctionalJavascriptTestSuite

Discovers tests for the functional-javascript test suite.

Hierarchy

Expanded class hierarchy of FunctionalJavascriptTestSuite

Deprecated

in drupal:10.3.0 and is removed from drupal:11.0.0. There is no replacement and test discovery will be handled differently in PHPUnit 10.

See also

https://www.drupal.org/node/3405829

File

core/tests/TestSuites/FunctionalJavascriptTestSuite.php, line 17

Namespace

Drupal\Tests\TestSuites
View source
class FunctionalJavascriptTestSuite extends TestSuiteBase {
  
  /**
   * Factory method which loads up a suite with all functional javascript tests.
   *
   * @return static
   *   The test suite.
   */
  public static function suite() {
    $root = dirname(__DIR__, 3);
    $suite = new static('functional-javascript');
    $suite->addTestsBySuiteNamespace($root, 'FunctionalJavascript');
    return $suite;
  }

}

Members

Title Sort descending Modifiers Object type Summary Overrides
FunctionalJavascriptTestSuite::suite public static function Factory method which loads up a suite with all functional javascript tests.
TestSuiteBase::addTestsBySuiteNamespace protected function Find and add tests to the suite for core and any extensions.
TestSuiteBase::findExtensionDirectories protected function Finds extensions in a Drupal installation. 1

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.