ILIAS
release_8 Revision v8.19
◀ 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
n
o
p
r
s
t
u
v
w
x
+
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
j
l
m
p
s
t
u
+
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
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
CharacteristicValueTextTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
21
require_once(__DIR__ .
'/CharacteristicValueTest.php'
);
22
23
class
CharacteristicValueTextTest
extends
CharacteristicValueTest
24
{
25
public
function
test_getItems
(): void
26
{
27
$f
= $this->
getCharacteristicValueFactory
();
28
29
$items = $this->
getTextItemsMock
();
30
$textListing =
$f
->text($items);
31
$this->assertEquals($items, $textListing->getItems());
32
}
33
34
public
function
test_validation
(): void
35
{
36
$f
= $this->
getCharacteristicValueFactory
();
37
38
foreach
($this->
getInvalidTextItemsMocks
() as $invalidItemsMock) {
39
try
{
40
$f
->text($invalidItemsMock);
41
42
$this->throwException(
new
Exception
(
43
'expected InvalidArgumentException, catched none'
44
));
45
}
catch
(
InvalidArgumentException
$e
) {
46
$this->assertInstanceOf(
'InvalidArgumentException'
, $e);
47
}
48
}
49
}
50
51
public
function
test_rendered
(): void
52
{
53
$f
= $this->
getCharacteristicValueFactory
();
54
$r = $this->
getDefaultRenderer
();
55
56
$items = $this->
getTextItemsMock
();
57
$textListing =
$f
->text($items);
58
$actualHtml = $r->render($textListing);
59
60
$expectedHtml = $this->
getExpectedHtml
();
61
62
$this->
assertHTMLEquals
($expectedHtml, $actualHtml);
63
}
64
65
private
function
getExpectedHtml
(): string
66
{
67
$html =
'<div class="il-listing-characteristic-value clearfix">'
;
68
$html .=
' <div class="il-listing-characteristic-value-row clearfix">'
;
69
$html .=
' <div class="il-listing-characteristic-value-label">label1</div>'
;
70
$html .=
' <div class="il-listing-characteristic-value-item">item1</div>'
;
71
$html .=
' </div>'
;
72
$html .=
' <div class="il-listing-characteristic-value-row clearfix">'
;
73
$html .=
' <div class="il-listing-characteristic-value-label">label2</div>'
;
74
$html .=
' <div class="il-listing-characteristic-value-item">item2</div>'
;
75
$html .=
' </div>'
;
76
$html .=
' <div class="il-listing-characteristic-value-row clearfix">'
;
77
$html .=
' <div class="il-listing-characteristic-value-label">label3</div>'
;
78
$html .=
' <div class="il-listing-characteristic-value-item">item3</div>'
;
79
$html .=
' </div>'
;
80
$html .=
'</div>'
;
81
82
return
$html;
83
}
84
}
ILIAS_UI_TestBase\getDefaultRenderer
getDefaultRenderer(JavaScriptBinding $js_binding=null, array $with_stub_renderings=[])
Definition:
Base.php:355
CharacteristicValueTest\getCharacteristicValueFactory
getCharacteristicValueFactory()
Definition:
CharacteristicValueTest.php:42
CharacteristicValueTest\getInvalidTextItemsMocks
getInvalidTextItemsMocks()
Definition:
CharacteristicValueTest.php:56
CharacteristicValueTest
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
CharacteristicValueTest.php:25
Vendor\Package\$e
$e
Definition:
example_cleaned.php:49
ILIAS_UI_TestBase\assertHTMLEquals
assertHTMLEquals(string $expected_html_as_string, string $html_as_string)
Definition:
Base.php:427
CharacteristicValueTextTest\test_getItems
test_getItems()
Definition:
CharacteristicValueTextTest.php:25
CharacteristicValueTextTest\getExpectedHtml
getExpectedHtml()
Definition:
CharacteristicValueTextTest.php:65
Vendor\Package\$f
$f
Definition:
example_cleaned.php:49
CharacteristicValueTest\getTextItemsMock
getTextItemsMock()
Definition:
CharacteristicValueTest.php:47
CharacteristicValueTextTest\test_rendered
test_rendered()
Definition:
CharacteristicValueTextTest.php:51
CharacteristicValueTextTest\test_validation
test_validation()
Definition:
CharacteristicValueTextTest.php:34
InvalidArgumentException
CharacteristicValueTextTest
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
CharacteristicValueTextTest.php:23
Exception
tests
UI
Component
Listing
CharacteristicValue
CharacteristicValueTextTest.php
Generated on Fri Apr 4 2025 22:03:21 for ILIAS by
1.8.13 (using
Doxyfile
)