ILIAS  release_8 Revision v8.24
ilCtrlStructureSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6
7use PHPUnit\Framework\TestSuite;
8
14class ilCtrlStructureSuite extends TestSuite
15{
19 public static function suite(): self
20 {
21 $suite = new self();
22
23 require_once __DIR__ . '/ilCtrlStructureCidGeneratorTest.php';
24 $suite->addTestSuite(ilCtrlStructureCidGeneratorTest::class);
25
26 require_once __DIR__ . '/ilCtrlStructureHelperTest.php';
27 $suite->addTestSuite(ilCtrlStructureHelperTest::class);
28
29 require_once __DIR__ . '/ilCtrlStructureMapperTest.php';
30 $suite->addTestSuite(ilCtrlStructureMapperTest::class);
31
32 require_once __DIR__ . '/ilCtrlStructureReaderTest.php';
33 $suite->addTestSuite(ilCtrlStructureReaderTest::class);
34
35 require_once __DIR__ . '/ilCtrlStructureTest.php';
36 $suite->addTestSuite(ilCtrlStructureTest::class);
37
38 return $suite;
39 }
40}
Class ilCtrlStructureSuite.