ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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
▼
ILIAS
Test List
Todo List
Deprecated List
►
Modules
►
Namespaces
►
Data Structures
▼
Files
►
File List
►
Globals
►
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
GroupTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Tests\Refinery\Encode
;
22
23
use
ILIAS\Refinery\Encode\Group
;
24
use
PHPUnit\Framework\TestCase
;
25
use
ILIAS\Refinery\Encode\Transformation\HTMLAttributeValue
;
26
use
ILIAS\Refinery\Encode\Transformation\HTMLSpecialCharsAsEntities
;
27
use
ILIAS\Refinery\Encode\Transformation\Json
;
28
use
ILIAS\Refinery\Encode\Transformation\URL
;
29
30
class
GroupTest
extends
TestCase
31
{
32
public
function
testConstruct
(): void
33
{
34
$this->assertInstanceOf(Group::class,
new
Group
());
35
}
36
37
public
function
testHtmlAttributeValue
(): void
38
{
39
$group =
new
Group
();
40
$this->assertInstanceOf(HTMLAttributeValue::class, $group->htmlAttributeValue());
41
}
42
43
public
function
testHtmlSpecialCharsAsEntities
(): void
44
{
45
$group =
new
Group
();
46
$this->assertInstanceOf(HTMLSpecialCharsAsEntities::class, $group->htmlSpecialCharsAsEntities());
47
}
48
49
public
function
testJson
(): void
50
{
51
$group =
new
Group
();
52
$this->assertInstanceOf(Json::class, $group->json());
53
}
54
55
public
function
testUrl
(): void
56
{
57
$group =
new
Group
();
58
$this->assertInstanceOf(URL::class, $group->url());
59
}
60
}
Json
ILIAS\Tests\Refinery\Encode\GroupTest
Definition:
GroupTest.php:30
ILIAS\Tests\Refinery\Encode\GroupTest\testHtmlAttributeValue
testHtmlAttributeValue()
Definition:
GroupTest.php:37
ILIAS\Tests\Refinery\Encode
Definition:
GroupTest.php:21
ILIAS\Refinery\Encode\Transformation\URL
ILIAS\Tests\Refinery\Encode\GroupTest\testJson
testJson()
Definition:
GroupTest.php:49
ILIAS\Tests\Refinery\Encode\GroupTest\testUrl
testUrl()
Definition:
GroupTest.php:55
HTMLAttributeValue
HTMLSpecialCharsAsEntities
ILIAS\Tests\Refinery\Encode\GroupTest\testConstruct
testConstruct()
Definition:
GroupTest.php:32
ILIAS\Tests\Refinery\Encode\GroupTest\testHtmlSpecialCharsAsEntities
testHtmlSpecialCharsAsEntities()
Definition:
GroupTest.php:43
ILIAS\ILIASObject\Creation\Group
Definition:
AddNewItemElementTypes.php:26
TestCase
components
ILIAS
Refinery
tests
Encode
GroupTest.php
Generated on Thu Apr 3 2025 23:03:30 for ILIAS by
1.8.13 (using
Doxyfile
)