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
PCFactoryTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\COPage\Test\PC
;
22
23
use
PHPUnit\Framework\TestCase
;
24
use
ILIAS\COPage\PC\PCFactory
;
25
use
ILIAS\COPage\Page\PageContentManager
;
26
30
class
PCFactoryTest
extends
\COPageTestBase
31
{
32
public
function
testGetByNode
(): void
33
{
34
global
$DIC
;
35
36
$dom_util = new \ILIAS\COPage\Dom\DomUtil();
37
$page = $this->
getEmptyPageWithDom
();
38
$page_content =
new
PageContentManager($page->getDomDoc());
39
$pc_factory =
new
PCFactory($def = $this->
getPCDefinition
());
40
41
$this->
insertParagraphAt
($page,
"pg"
,
"Hello"
);
42
$this->
insertParagraphAt
($page,
"1"
,
"World"
);
43
$page->insertPCIds();
44
45
$node = $page_content->getContentDomNode(
"1"
);
46
$pc = $pc_factory->getByNode($node, $page);
47
48
$this->assertEquals(
49
\ilPCParagraph::class,
50
get_class($pc)
51
);
52
53
$this->assertEquals(
54
"Hello"
,
55
$pc->getText()
56
);
57
}
58
}
COPageTestBase\insertParagraphAt
insertParagraphAt(\ilPageObject $page, string $hier_id, string $text="")
Definition:
COPageTestBase.php:170
COPageTestBase
Definition:
COPageTestBase.php:24
ILIAS\COPage\Test\PC
COPageTestBase\getPCDefinition
getPCDefinition()
Definition:
COPageTestBase.php:152
$DIC
global $DIC
Definition:
shib_login.php:22
PCFactory
COPageTestBase\getEmptyPageWithDom
getEmptyPageWithDom()
Definition:
COPageTestBase.php:207
PageContentManager
TestCase
PHPUnit::Framework::Attributes\Test::PC\PCFactoryTest\testGetByNode
testGetByNode()
Definition:
PCFactoryTest.php:32
PHPUnit::Framework::Attributes\Test::PC\PCFactoryTest
Definition:
PCFactoryTest.php:30
components
ILIAS
COPage
tests
PC
PCFactoryTest.php
Generated on Wed Apr 2 2025 23:02:36 for ILIAS by
1.8.13 (using
Doxyfile
)