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