ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilExceptionTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
23 
29 {
30  protected Container $dic;
31 
32  protected function setUp(): void
33  {
34  parent::setUp();
35  }
36 
37  public function testConstruct(): void
38  {
39  $exception = new ilException('My fault');
40  $this->assertInstanceOf(ilException::class, $exception);
41  $this->assertInstanceOf(Exception::class, $exception);
42  }
43 
44  protected function setGlobalVariable(string $name, $value): void
45  {
46  global $DIC;
47 
48  $GLOBALS[$name] = $value;
49  unset($DIC[$name]);
50  $DIC[$name] = static function (\ILIAS\DI\Container $c) use ($value) {
51  return $value;
52  };
53  }
54 }
$c
Definition: deliver.php:25
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:35
$GLOBALS["DIC"]
Definition: wac.php:53
global $DIC
Definition: shib_login.php:22
Class ilExceptionTest.
setGlobalVariable(string $name, $value)