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