ILIAS  release_8 Revision v8.24
ilServicesRTESuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
21use PHPUnit\Framework\TestSuite;
22
23class ilServicesRTESuite extends TestSuite
24{
25 public static function suite(): self
26 {
27 $suite = new self();
28
29 require_once __DIR__ . '/ilTinyMCETest.php';
30 $suite->addTestSuite(ilTinyMCETest::class);
31
32 return $suite;
33 }
34}