ILIAS
trunk Revision v11.0_alpha-1715-g7fc467680fb
◀ 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
MapTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\LegalDocuments\test
;
22
23
use
PHPUnit\Framework\TestCase
;
24
use
ILIAS\LegalDocuments\Map
;
25
26
class
MapTest
extends
TestCase
27
{
28
public
function
testConstruct
(): void
29
{
30
$this->assertInstanceOf(Map::class,
new
Map
());
31
}
32
33
public
function
testAdd
(): void
34
{
35
$this->assertSame([
'foo'
=> [
'bar'
]], (
new
Map
())->
add
(
'foo'
,
'bar'
)->value());
36
}
37
38
public
function
testSet
(): void
39
{
40
$this->assertSame([
'foo'
=> [
'bar'
=>
'baz'
]], (
new
Map
())->
set
(
'foo'
,
'bar'
,
'baz'
)->value());
41
}
42
43
public
function
testHas
(): void
44
{
45
$this->assertTrue((
new
Map
([
'foo'
=> [
'bar'
=>
'baz'
]]))->
has
(
'foo'
,
'bar'
));
46
$this->assertFalse((
new
Map
([
'foo'
=> [
'bar'
=>
'baz'
]]))->
has
(
'hoo'
,
'bar'
));
47
}
48
49
public
function
testAppend
(): void
50
{
51
$this->assertSame([
'foo'
=> [1, 2],
'bar'
=> [1, 2]], (
new
Map
([
'foo'
=> [1, 2]]))->append(
new
Map
([
'bar'
=> [1, 2]]))->value());
52
}
53
54
public
function
testValue
(): void
55
{
56
$this->assertSame([
'a'
=> [],
'b'
=> [
'foo'
=>
'bar'
]], (
new
Map
([
'a'
=> [],
'b'
=> [
'foo'
=>
'bar'
]]))->value());
57
}
58
}
ILIAS\LegalDocuments\test\MapTest
Definition:
MapTest.php:26
ILIAS\UI\examples\Symbol\Glyph\Add\add
add()
description: > Example for rendring an add glyph.
Definition:
add.php:41
ILIAS\LegalDocuments\test\MapTest\testValue
testValue()
Definition:
MapTest.php:54
ILIAS\LegalDocuments\test\MapTest\testSet
testSet()
Definition:
MapTest.php:38
ILIAS\LegalDocuments\Map
Definition:
Map.php:26
ILIAS\GlobalScreen\has
has(string $class_name)
Definition:
SingletonTrait.php:61
ILIAS\LegalDocuments\test\MapTest\testAppend
testAppend()
Definition:
MapTest.php:49
Map
ILIAS\LegalDocuments\test\MapTest\testAdd
testAdd()
Definition:
MapTest.php:33
ILIAS\LegalDocuments\test
Definition:
AdministrationEditLinksTest.php:21
ILIAS\LegalDocuments\test\MapTest\testHas
testHas()
Definition:
MapTest.php:43
ILIAS\LegalDocuments\test\MapTest\testConstruct
testConstruct()
Definition:
MapTest.php:28
TestCase
components
ILIAS
LegalDocuments
tests
MapTest.php
Generated on Sat Apr 5 2025 23:03:18 for ILIAS by
1.8.13 (using
Doxyfile
)