ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BaseTestCase.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
20 namespace ILIAS\User\Tests;
21 
23 
28 class BaseTestCase extends TestCase
29 {
30  protected function assertException(string $exception_class): void
31  {
32  $this->expectException($exception_class);
33  }
34 }
assertException(string $exception_class)