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