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