class FunctionalTestSuite
Discovers tests for the functional test suite.
Hierarchy
- class \Drupal\Tests\TestSuites\TestSuiteBase implements \PHPUnit\Framework\TestSuite
- class \Drupal\Tests\TestSuites\FunctionalTestSuite implements \Drupal\Tests\TestSuites\TestSuiteBase
Expanded class hierarchy of FunctionalTestSuite
File
-
core/
tests/ TestSuites/ FunctionalTestSuite.php, line 10
Namespace
Drupal\Tests\TestSuitesView source
class FunctionalTestSuite extends TestSuiteBase {
/**
* Factory method which loads up a suite with all functional tests.
*
* @return static
* The test suite.
*/
public static function suite() {
$root = dirname(__DIR__, 3);
$suite = new static('functional');
$suite->addTestsBySuiteNamespace($root, 'Functional');
return $suite;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.