ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
ilCtrlIteratorSuite.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6 
8 
14 class ilCtrlIteratorSuite extends TestSuite
15 {
19  public static function suite(): self
20  {
21  $suite = new self();
22 
23  require_once __DIR__ . '/ilCtrlArrayIteratorTest.php';
24  $suite->addTestSuite(ilCtrlArrayIteratorTest::class);
25 
26  return $suite;
27  }
28 }
Class ilCtrlIteratorSuite.