ILIAS  release_8 Revision v8.24
ilServicesImprintSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
18use PHPUnit\Framework\TestSuite;
19
23class ilServicesImprintSuite extends TestSuite
24{
25 public static function suite(): self
26 {
27 $suite = new self();
29 require_once("./Services/Imprint/test/ImprintStandardGUIRequestTest.php");
30 $suite->addTestSuite("ImprintStandardGUIRequestTest");
31
32 return $suite;
33 }
34}