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