Backup of db before drupal security update
[yaffs-website] / web / core / tests / TestSuites / FunctionalTestSuite.php
1 <?php
2
3 namespace Drupal\Tests\TestSuites;
4
5 require_once __DIR__ . '/TestSuiteBase.php';
6
7 /**
8  * Discovers tests for the functional test suite.
9  */
10 class FunctionalTestSuite extends TestSuiteBase {
11
12   /**
13    * Factory method which loads up a suite with all functional tests.
14    *
15    * @return static
16    *   The test suite.
17    */
18   public static function suite() {
19     $root = dirname(dirname(dirname(__DIR__)));
20
21     $suite = new static('functional');
22     $suite->addTestsBySuiteNamespace($root, 'Functional');
23
24     return $suite;
25   }
26
27 }