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
NotificationFactoryTest.php
Go to the documentation of this file.
1
<?php
2
19
use
ILIAS\GlobalScreen\Scope\Notification\Factory\StandardNotification
;
20
use
ILIAS\GlobalScreen\Scope\Notification\Factory\StandardNotificationGroup
;
21
22
require_once(__DIR__ .
"/../BaseNotificationSetUp.php"
);
23
27
class
NotificationFactoryTest
extends
BaseNotificationSetUp
28
{
29
public
function
testAvailableMethods
(): void
30
{
31
$r =
new
ReflectionClass
($this->factory);
32
33
$methods = [];
34
foreach
($r->getMethods(ReflectionMethod::IS_PUBLIC) as $method) {
35
$methods[] = $method->getName();
36
}
37
sort($methods);
38
$this->assertEquals(
39
[
40
0 =>
'administrative'
,
41
1 =>
'standard'
,
42
2 =>
'standardGroup'
,
43
],
44
$methods
45
);
46
}
47
48
49
public
function
testCorrectReturn
(): void
50
{
51
$this->assertInstanceOf(StandardNotification::class, $this->factory->standard($this->id));
52
$this->assertInstanceOf(StandardNotificationGroup::class, $this->factory->standardGroup($this->id));
53
}
54
}
NotificationFactoryTest
Class NotificationFactoryTest.
Definition:
NotificationFactoryTest.php:27
StandardNotification
BaseNotificationSetUp
Class BaseNotificationSetUp.
Definition:
BaseNotificationSetUp.php:42
NotificationFactoryTest\testCorrectReturn
testCorrectReturn()
Definition:
NotificationFactoryTest.php:49
NotificationFactoryTest\testAvailableMethods
testAvailableMethods()
Definition:
NotificationFactoryTest.php:29
ReflectionClass
StandardNotificationGroup
tests
GlobalScreen
Notification
Factory
NotificationFactoryTest.php
Generated on Fri Apr 4 2025 22:03:18 for ILIAS by
1.8.13 (using
Doxyfile
)