ILIAS
release_7 Revision v7.30-3-g800a261c036
◀ 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
p
r
s
t
w
+
Functions
_
a
b
c
f
g
h
i
r
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ModalFactoryTest.php
Go to the documentation of this file.
1
<?php
2
3
require_once(__DIR__ .
'/ModalBase.php'
);
4
5
use \ILIAS\UI\Component as
C
;
6
12
class
ModalFactoryTest
extends
ModalBase
13
{
14
public
function
test_implements_factory_interface
()
15
{
16
$factory
= $this->
getModalFactory
();
17
$this->assertInstanceOf(
"ILIAS\\UI\\Component\\Modal\\Factory"
,
$factory
);
18
19
$interruptive =
$factory
->interruptive(
'myTitle'
,
'myMessage'
,
'myFormAction'
);
20
$this->assertInstanceOf(
"ILIAS\\UI\\Component\\Modal\\Interruptive"
, $interruptive);
21
22
$round_trip =
$factory
->roundtrip(
'myTitle'
, $this->
getDummyComponent
());
23
$this->assertInstanceOf(
"ILIAS\\UI\\Component\\Modal\\RoundTrip"
, $round_trip);
24
25
$lightbox =
$factory
->lightbox(
new
LightboxMockPage
());
26
$this->assertInstanceOf(
"ILIAS\\UI\\Component\\Modal\\LightBox"
, $lightbox);
27
}
28
}
ModalFactoryTest\test_implements_factory_interface
test_implements_factory_interface()
Definition:
ModalFactoryTest.php:14
ILIAS\UI\Component
ModalBase\getDummyComponent
getDummyComponent()
Definition:
ModalBase.php:41
LightboxMockPage
Definition:
LightboxTest.php:87
ModalBase
Base class for modal tests.
Definition:
ModalBase.php:13
ModalFactoryTest
Tests on factory implementation for modals.
Definition:
ModalFactoryTest.php:12
ModalBase\getModalFactory
getModalFactory()
Definition:
ModalBase.php:31
$factory
$factory
Definition:
metadata.php:58
tests
UI
Component
Modal
ModalFactoryTest.php
Generated on Thu Apr 3 2025 21:01:40 for ILIAS by
1.8.13 (using
Doxyfile
)