ILIAS  release_9 Revision v9.13-25-g2c18ec4c24f
ilServicesMediaObjectsSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
23 require_once 'libs/composer/vendor/autoload.php';
24 
29 {
30  public static function suite(): self
31  {
32  $suite = new self();
33 
34  require_once("./Services/MediaObjects/test/ImageMapEditSessionRepositoryTest.php");
35  $suite->addTestSuite("ImageMapEditSessionRepositoryTest");
36 
37  require_once("./Services/MediaObjects/test/MediaTypeManagerTest.php");
38  $suite->addTestSuite("MediaTypeManagerTest");
39 
40  return $suite;
41  }
42 }