ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilCtrlStructureSuite.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PHPUnit\Framework\TestSuite;
22
28class ilCtrlStructureSuite extends TestSuite
29{
33 public static function suite(): self
34 {
35 $suite = new self();
36
37 require_once __DIR__ . '/ilCtrlStructureCidGeneratorTest.php';
38 $suite->addTestSuite(ilCtrlStructureCidGeneratorTest::class);
39
40 require_once __DIR__ . '/ilCtrlStructureHelperTest.php';
41 $suite->addTestSuite(ilCtrlStructureHelperTest::class);
42
43 require_once __DIR__ . '/ilCtrlStructureMapperTest.php';
44 $suite->addTestSuite(ilCtrlStructureMapperTest::class);
45
46 require_once __DIR__ . '/ilCtrlStructureReaderTest.php';
47 $suite->addTestSuite(ilCtrlStructureReaderTest::class);
48
49 require_once __DIR__ . '/ilCtrlStructureTest.php';
50 $suite->addTestSuite(ilCtrlStructureTest::class);
51
52 return $suite;
53 }
54}
Class ilCtrlStructureSuite.