ILIAS  release_8 Revision v8.24
ilServicesMathJaxSuite.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PHPUnit\Framework\TestSuite;
22use PHPUnit\Framework\TestCase;
23
27class ilServicesMathJaxSuite extends TestSuite
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.