ILIAS  release_8 Revision v8.24
ilServicesNotificationSuite.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 ilServicesNotificationSuite extends TestSuite
26{
27 public static function suite(): \ilServicesNotificationSuite
28 {
29 $suite = new self();
30
31 require_once("./Services/Notification/test/NotificationTest.php");
32 $suite->addTestSuite("NotificationTest");
33
34 return $suite;
35 }
36}