ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
+
Files
File List
+
Globals
+
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
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
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
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ArrayEnvironmentTest.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 2019 Richard Klees <richard.klees@concepts-and-training.de> Extended GPL, see docs/LICENSE */
4
5
namespace
ILIAS\Tests\Setup
;
6
7
use
ILIAS\Setup
;
8
9
class
ArrayEnvironmentTest
extends
\PHPUnit\Framework\TestCase
10
{
11
public
function
setUp
() : void
12
{
13
$this->
environment
=
new
Setup\ArrayEnvironment
([
14
"foo"
=>
"FOO"
,
15
"bar"
=>
"BAR"
16
]);
17
}
18
19
public
function
testGetResource
()
20
{
21
$this->assertEquals(
"FOO"
, $this->
environment
->getResource(
"foo"
));
22
$this->assertEquals(
"BAR"
, $this->
environment
->getResource(
"bar"
));
23
$this->assertNull($this->
environment
->getResource(
"baz"
));
24
}
25
26
public
function
testWithResource
()
27
{
28
$env = $this->
environment
->withResource(
"baz"
,
"BAZ"
);
29
30
$this->assertEquals(
"FOO"
, $env->getResource(
"foo"
));
31
$this->assertEquals(
"BAR"
, $env->getResource(
"bar"
));
32
$this->assertEquals(
"BAZ"
, $env->getResource(
"baz"
));
33
}
34
35
public
function
testSetResourceRejectsDuplicates
()
36
{
37
$this->expectException(\RuntimeException::class);
38
39
$env = $this->
environment
->withResource(
"baz"
,
"BAZ"
);
40
$env->withResource(
"baz"
,
"BAZ"
);
41
}
42
43
public
function
testConfigFor
()
44
{
45
$env = $this->
environment
->withConfigFor(
"foo"
,
"BAR"
);
46
$this->assertEquals(
"BAR"
, $env->getConfigFor(
"foo"
));
47
}
48
49
public
function
testDuplicateConfigFor
()
50
{
51
$this->expectException(\RuntimeException::class);
52
$env = $this->
environment
53
->withConfigFor(
"foo"
,
"BAR"
)
54
->withConfigFor(
"foo"
,
"BAZ"
);
55
}
56
57
public
function
testWrongConfigId
()
58
{
59
$this->expectException(\RuntimeException::class);
60
$env = $this->
environment
61
->getConfigFor(
"foofoo"
);
62
}
63
}
ILIAS\Tests\Setup\ArrayEnvironmentTest\testWithResource
testWithResource()
Definition:
ArrayEnvironmentTest.php:26
ILIAS\Tests\Setup\ArrayEnvironmentTest
Definition:
ArrayEnvironmentTest.php:9
ILIAS\Tests\Setup\ArrayEnvironmentTest\testConfigFor
testConfigFor()
Definition:
ArrayEnvironmentTest.php:43
ILIAS\Setup\ArrayEnvironment
Definition:
ArrayEnvironment.php:9
ILIAS\Tests\Setup\ArrayEnvironmentTest\testDuplicateConfigFor
testDuplicateConfigFor()
Definition:
ArrayEnvironmentTest.php:49
ILIAS\Tests\Setup\ArrayEnvironmentTest\testGetResource
testGetResource()
Definition:
ArrayEnvironmentTest.php:19
environment
environment()
Definition:
environment.php:3
ILIAS\Tests\Setup\ArrayEnvironmentTest\testSetResourceRejectsDuplicates
testSetResourceRejectsDuplicates()
Definition:
ArrayEnvironmentTest.php:35
ILIAS\Setup
Definition:
AchievementTracker.php:5
ILIAS\Tests\Setup\ArrayEnvironmentTest\testWrongConfigId
testWrongConfigId()
Definition:
ArrayEnvironmentTest.php:57
ILIAS\Tests\Setup
Definition:
AdminConfirmedObjectiveTest.php:5
ILIAS\Tests\Setup\ArrayEnvironmentTest\setUp
setUp()
Definition:
ArrayEnvironmentTest.php:11
tests
Setup
ArrayEnvironmentTest.php
Generated on Thu Apr 3 2025 20:01:23 for ILIAS by
1.8.13 (using
Doxyfile
)