ILIAS
trunk Revision v11.0_alpha-2638-g80c1d007f79
◀ ilDoc Overview
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 Sun Aug 31 2025 23:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)