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