ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilServicesPermanentLinkSuite.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
22 
24 require_once 'libs/composer/vendor/autoload.php';
25 
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 }