ILIAS  release_8 Revision v8.24
ilServicesPermanentLinkSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
21use PHPUnit\Framework\TestSuite;
22
24require_once 'libs/composer/vendor/autoload.php';
25
30class ilServicesPermanentLinkSuite extends TestSuite
31{
32 public static function suite(): self
33 {
34 $suite = new self();
36 require_once("./Services/PermanentLink/test/PermanentLinkGUITest.php");
37 $suite->addTestSuite("PermanentLinkGUITest");
38
39 return $suite;
40 }
41}