19 declare(strict_types=1);
35 $this->getMockBuilder(ilLanguage::class)->disableOriginalConstructor()->getMock()
41 $super_global =
new SuperGlobalDropInReplacement($this->
getRefinery(), [
'foo' =>
'bar']);
42 $super_global[
'foo'] =
'phpunit';
44 self::assertEquals(
'phpunit', $super_global[
'foo']);
49 $this->expectException(OutOfBoundsException::class);
51 $super_global =
new SuperGlobalDropInReplacement($this->
getRefinery(), [
'foo' =>
'bar'],
true);
52 $super_global[
'foo'] =
'phpunit';
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testExceptionIsRaisedIfValueIsAssignedButSuperGlobalIsImmutable()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testValueCanBeAssignedIfSuperGlobalIsMutable()