ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ 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
PCResourcesTest.php
Go to the documentation of this file.
1
<?php
2
19
use
PHPUnit\Framework\TestCase
;
20
24
class
PCResourcesTest
extends
COPageTestBase
25
{
26
public
function
testConstruction
(): void
27
{
28
$page = $this->
getEmptyPageWithDom
();
29
$pc =
new
ilPCResources
($page);
30
$this->assertEquals(
31
ilPCResources::class,
32
get_class($pc)
33
);
34
}
35
36
public
function
testCreate
(): void
37
{
38
$page = $this->
getEmptyPageWithDom
();
39
$pc =
new
ilPCResources
($page);
40
$pc->create($page,
"pg"
,
""
);
41
$this->
assertXmlEquals
(
42
'<PageObject HierId="pg"><PageContent><Resources></Resources></PageContent></PageObject>'
,
43
$page->getXMLFromDom()
44
);
45
}
46
47
public
function
testResourceListType
(): void
48
{
49
$page = $this->
getEmptyPageWithDom
();
50
$pc =
new
ilPCResources
($page);
51
$pc->create($page,
"pg"
,
""
);
52
$pc->setResourceListType(
"glo"
);
53
54
$this->assertEquals(
55
"glo"
,
56
$pc->getResourceListType()
57
);
58
$this->assertEquals(
59
"ResourceList"
,
60
$pc->getMainType()
61
);
62
63
$page->stripHierIDs();
64
65
$expected = <<<EOT
66
<PageObject><PageContent><Resources><ResourceList
Type
=
"glo"
></ResourceList></Resources></PageContent></PageObject>
67
EOT;
68
$this->
assertXmlEquals
(
69
$expected,
70
$page->getXMLFromDom()
71
);
72
}
73
74
public
function
testItemGroupRefId
(): void
75
{
76
$page = $this->
getEmptyPageWithDom
();
77
$pc =
new
ilPCResources
($page);
78
$pc->create($page,
"pg"
,
""
);
79
$pc->setItemGroupRefId(22);
80
81
$this->assertEquals(
82
22,
83
$pc->getItemGroupRefId()
84
);
85
$this->assertEquals(
86
"ItemGroup"
,
87
$pc->getMainType()
88
);
89
90
$page->stripHierIDs();
91
92
$expected = <<<EOT
93
<PageObject><PageContent><Resources><ItemGroup RefId=
"22"
></ItemGroup></Resources></PageContent></PageObject>
94
EOT;
95
$this->
assertXmlEquals
(
96
$expected,
97
$page->getXMLFromDom()
98
);
99
}
100
}
COPageTestBase
Definition:
COPageTestBase.php:24
PCResourcesTest
Definition:
PCResourcesTest.php:24
PCResourcesTest\testResourceListType
testResourceListType()
Definition:
PCResourcesTest.php:47
PCResourcesTest\testConstruction
testConstruction()
Definition:
PCResourcesTest.php:26
ILIAS\AdvancedMetaData\Data\FieldDefinition\Type
Type
Definition:
Type.php:23
ilPCResources
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilPCResources.php:25
PCResourcesTest\testCreate
testCreate()
Definition:
PCResourcesTest.php:36
COPageTestBase\getEmptyPageWithDom
getEmptyPageWithDom()
Definition:
COPageTestBase.php:207
TestCase
COPageTestBase\assertXmlEquals
assertXmlEquals(string $expected_xml_as_string, string $html_xml_string)
Definition:
COPageTestBase.php:193
PCResourcesTest\testItemGroupRefId
testItemGroupRefId()
Definition:
PCResourcesTest.php:74
components
ILIAS
COPage
tests
PCResourcesTest.php
Generated on Wed Apr 2 2025 23:02:36 for ILIAS by
1.8.13 (using
Doxyfile
)