ILIAS  release_8 Revision v8.24
ilServicesYUISuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
21use PHPUnit\Framework\TestSuite;
22
27class ilServicesYUISuite extends TestSuite
28{
29 public static function suite(): self
30 {
31 $suite = new self();
33 require_once("./Services/YUI/test/YUITest.php");
34 $suite->addTestSuite("YUITest");
35
36 return $suite;
37 }
38}