ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
SuperGlobalDropInReplacementTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\HTTP;
22 
26 use ilLanguage;
28 
30 {
31  private function getRefinery(): Refinery
32  {
33  return new Refinery(
34  new DataFactory(),
35  $this->getMockBuilder(ilLanguage::class)->disableOriginalConstructor()->getMock()
36  );
37  }
38 
40  {
41  $super_global = new SuperGlobalDropInReplacement($this->getRefinery(), ['foo' => 'bar']);
42  $super_global['foo'] = 'phpunit';
43 
44  self::assertEquals('phpunit', $super_global['foo']);
45  }
46 
48  {
49  $this->expectException(OutOfBoundsException::class);
50 
51  $super_global = new SuperGlobalDropInReplacement($this->getRefinery(), ['foo' => 'bar'], true);
52  $super_global['foo'] = 'phpunit';
53  }
54 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...