ILIAS  release_8 Revision v8.19-1-g4e8f2f9140c
All Data Structures Namespaces Files Functions Variables Modules Pages
ilServicesClassificationSuite.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
19 
20 require_once 'libs/composer/vendor/autoload.php';
21 
26 {
27  public static function suite(): self
28  {
29  $suite = new self();
30 
31  require_once("./Services/Classification/test/ClassificationSessionRepositoryTest.php");
32  $suite->addTestSuite("ClassificationSessionRepositoryTest");
33 
34  return $suite;
35  }
36 }