ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilServicesMathJaxSuite.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
28 {
29  private const TEST_CLASSES = [
30  'ilMathJaxTest'
31  ];
32 
33  public static function suite(): self
34  {
35  $suite = new self();
36 
37  foreach (self::TEST_CLASSES as $class) {
38  require_once __DIR__ . "/class.$class.php";
39  $suite->addTestSuite($class);
40  }
41 
42  return $suite;
43  }
44 }
Test Suite for the MathJax service.