
| Current Path : /var/www/html/rocksensor1/web/core/tests/TestSuites/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/tests/TestSuites/FunctionalJavascriptTestSuite.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\TestSuites;
require_once __DIR__ . '/TestSuiteBase.php';
/**
* Discovers tests for the functional-javascript test suite.
*
* @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 https://www.drupal.org/node/3405829
*/
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;
}
}