ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilCtrlSetupSuite.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PHPUnit\Framework\TestSuite;
22
27class ilCtrlSetupSuite extends TestSuite
28{
32 public static function suite(): self
33 {
34 $suite = new self();
35
36 require_once __DIR__ . '/ilUICoreSetupAgentTest.php';
37 $suite->addTestSuite(ilUICoreSetupAgentTest::class);
38
39 return $suite;
40 }
41}
Class ilCtrlSetupSuite.