ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilServicesWebServicesECSSuite.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21use PHPUnit\Framework\TestSuite;
22
23class ilServicesWebServicesECSSuite extends TestSuite
24{
25 public static function suite(): self
26 {
27 $suite = new ilServicesWebServicesECSSuite();
28 require_once __DIR__ . '/ilECSUserTest.php';
29 $suite->addTestSuite(ilECSUserTest::class);
30
31 return $suite;
32 }
33}