ILIAS  release_8 Revision v8.24
ilServicesEventHandlingSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
18use PHPUnit\Framework\TestSuite;
19
20require_once 'libs/composer/vendor/autoload.php';
21
25class ilServicesEventHandlingSuite extends TestSuite
26{
27 public static function suite(): self
28 {
29 $suite = new self();
30
31 require_once("./Services/EventHandling/test/EventTest.php");
32 $suite->addTestSuite("EventTest");
33
34 return $suite;
35 }
36}