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