ILIAS  release_8 Revision v8.24
ilServicesExceptionsSuite.php
Go to the documentation of this file.
1<?php
2
19use PHPUnit\Framework\TestSuite;
20
21class ilServicesExceptionsSuite extends TestSuite
22{
23 public static function suite(): self
24 {
25 $suite = new self();
26 include_once('./Services/Exceptions/test/ilExceptionTest.php');
27 $suite->addTestSuite(ilExceptionTest::class);
28 return $suite;
29 }
30}