ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
BaseTestCase.php
Go to the documentation of this file.
1<?php
18declare(strict_types=1);
19
21
22use PHPUnit\Framework\TestCase;
23
28class BaseTestCase extends TestCase
29{
30 protected function assertException(string $exception_class): void
31 {
32 $this->expectException($exception_class);
33 }
34}
assertException(string $exception_class)