ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilUserBaseTest.php
Go to the documentation of this file.
1 <?php
19 
24 class ilUserBaseTest extends TestCase
25 {
26  protected function assertException(string $exception_class): void
27  {
28  $this->expectException($exception_class);
29  }
30 }
assertException(string $exception_class)