ILIAS  trunk Revision v11.0_alpha-1715-g7fc467680fb
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilCtrlTokenSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 class ilCtrlTokenSuite extends TestSuite
29 {
33  public static function suite(): self
34  {
35  $suite = new self();
36 
37  require_once __DIR__ . '/ilCtrlTokenTest.php';
38  $suite->addTestSuite(ilCtrlTokenTest::class);
39 
40  require_once __DIR__ . '/ilCtrlTokenRepositoryTest.php';
41  $suite->addTestSuite(ilCtrlTokenRepositoryTest::class);
42 
43  return $suite;
44  }
45 }
Class ilCtrlTokenSuite.