ILIAS  release_8 Revision v8.24
ilCtrlTokenSuite.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6
7use PHPUnit\Framework\TestSuite;
8
14class ilCtrlTokenSuite extends TestSuite
15{
19 public static function suite(): self
20 {
21 $suite = new self();
22
23 require_once __DIR__ . '/ilCtrlTokenTest.php';
24 $suite->addTestSuite(ilCtrlTokenTest::class);
25
26 require_once __DIR__ . '/ilCtrlTokenRepositoryTest.php';
27 $suite->addTestSuite(ilCtrlTokenRepositoryTest::class);
28
29 return $suite;
30 }
31}
Class ilCtrlTokenSuite.