ILIAS  release_8 Revision v8.23
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 
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.