Version 1
[yaffs-website] / web / modules / contrib / token / src / Tests / TokenTestBase.php
1 <?php
2
3 namespace Drupal\token\Tests;
4
5 use Drupal\simpletest\WebTestBase;
6
7 /**
8  * Helper test class with some added functions for testing.
9  */
10 abstract class TokenTestBase extends WebTestBase {
11
12   use TokenTestTrait;
13
14   /**
15    * Modules to enable.
16    *
17    * @var array
18    */
19   public static $modules = array('path', 'token', 'token_module_test');
20
21 }