2016-06-24 16:36:21 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Drupal\Tests\TestSuites;
|
|
|
|
|
|
|
|
require_once __DIR__ . '/TestSuiteBase.php';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Discovers tests for the functional-javascript test suite.
|
|
|
|
*/
|
|
|
|
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() {
|
2020-04-23 16:15:14 +00:00
|
|
|
$root = dirname(__DIR__, 3);
|
2016-06-24 16:36:21 +00:00
|
|
|
|
|
|
|
$suite = new static('functional-javascript');
|
|
|
|
$suite->addTestsBySuiteNamespace($root, 'FunctionalJavascript');
|
|
|
|
|
|
|
|
return $suite;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|