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