ILIAS
trunk Revision v11.0_alpha-2658-ge2404539063
◀ ilDoc Overview
RenamingDICTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Component\Tests\Dependencies
;
22
23
use
PHPUnit\Framework\TestCase
;
24
use
ILIAS\Component\Dependencies\RenamingDIC
;
25
26
class
RenamingDICTest
extends
TestCase
27
{
28
public
function
testRenaming
()
29
{
30
$wrapped =
new
class
() implements \
ArrayAccess
{
31
public
array
$data
= [];
32
33
public
function
offsetSet(
$id
, $value):
void
34
{
35
$this->data[] = [
$id
, $value];
36
}
37
38
public
function
offsetGet(
$id
):
null
39
{
40
}
41
public
function
offsetExists(
$id
):
false
42
{
43
}
44
public
function
offsetUnset(
$id
):
void
45
{
46
}
47
};
48
$wrapper =
new
RenamingDIC
($wrapped);
49
50
$wrapper[
"Foo"
] =
"Bar"
;
51
$wrapper[
"Baz"
] =
"Bla"
;
52
$wrapper[
"Foo"
] =
"Foobar"
;
53
54
$expected = [[
"Foo_0"
,
"Bar"
], [
"Baz_1"
,
"Bla"
], [
"Foo_2"
,
"Foobar"
]];
55
$this->assertEquals($expected, $wrapped->data);
56
}
57
}
$data
$data
Definition:
ltiregistration.php:29
ILIAS\Component\Tests\Dependencies\RenamingDICTest
Definition:
RenamingDICTest.php:26
ILIAS\Component\Tests\Dependencies
Definition:
NameTest.php:21
null
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Definition:
shib_logout.php:144
RenamingDIC
ILIAS\Component\Tests\Dependencies\RenamingDICTest\testRenaming
testRenaming()
Definition:
RenamingDICTest.php:28
ArrayAccess
$id
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition:
plugin.php:23
ILIAS\Component\Dependencies\RenamingDIC
A wrapper around another DIC that superficially adds a _# and passes them to an underlying DIC...
Definition:
RenamingDIC.php:28
TestCase
components
ILIAS
Component
tests
Dependencies
RenamingDICTest.php
Generated on Tue Sep 2 2025 23:02:38 for ILIAS by
1.8.13 (using
Doxyfile
)