ILIAS
trunk Revision v11.0_alpha-1753-gb21ca8c4367
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
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:142
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 Thu Apr 10 2025 23:02:50 for ILIAS by
1.8.13 (using
Doxyfile
)