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
FactoryImplTest.php
Go to the documentation of this file.
1
<?php
2
19
namespace
ILIAS\GlobalScreen\MainMenu
;
20
21
use
ILIAS\GlobalScreen\Identification\IdentificationFactory
;
22
use
ILIAS\GlobalScreen\Identification\IdentificationInterface
;
23
use
ILIAS\GlobalScreen\Provider\NullProviderFactory
;
24
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\isInterchangeableItem
;
25
use
ILIAS\GlobalScreen\Scope\MainMenu\Factory\MainMenuItemFactory
;
26
use
ILIAS\GlobalScreen\Scope\MainMenu\Provider\StaticMainMenuProvider
;
27
use
PHPUnit\Framework\TestCase
;
28
use
ReflectionClass
;
29
use
ReflectionMethod
;
30
31
require_once(
'./libs/composer/vendor/autoload.php'
);
32
38
class
FactoryImplTest
extends
TestCase
39
{
43
protected
$id
;
47
protected
$provider
;
51
protected
$identification
;
55
protected
$factory
;
56
57
61
protected
function
setUp
() : void
62
{
63
parent::setUp();
64
65
$this->identification =
new
IdentificationFactory
(
new
NullProviderFactory
());
66
$this->provider = $this->getMockBuilder(StaticMainMenuProvider::class)->getMock();
67
68
$this->
id
= $this->identification->core($this->provider)->identifier(
'dummy'
);
69
70
$this->factory =
new
MainMenuItemFactory
();
71
}
72
73
74
public
function
testAvailableMethods
() : void
75
{
76
$r =
new
ReflectionClass
($this->factory);
77
78
$methods = [];
79
foreach
($r->getMethods(ReflectionMethod::IS_PUBLIC) as $method) {
80
$methods[] = $method->getName();
81
}
82
sort($methods);
83
$this->assertEquals(
84
[
85
0 =>
'complex'
,
86
1 =>
'custom'
,
87
2 =>
'link'
,
88
3 =>
'linkList'
,
89
4 =>
'repositoryLink'
,
90
5 =>
'separator'
,
91
6 =>
'topLinkItem'
,
92
7 =>
'topParentItem'
,
93
],
94
$methods
95
);
96
}
97
98
99
public
function
testInterchangeableContraints
() : void
100
{
101
$this->assertInstanceOf(isInterchangeableItem::class, $this->factory->topLinkItem($this->id));
102
$this->assertNotInstanceOf(isInterchangeableItem::class, $this->factory->topParentItem($this->id));
103
$this->assertInstanceOf(isInterchangeableItem::class, $this->factory->complex($this->id));
104
$this->assertInstanceOf(isInterchangeableItem::class, $this->factory->link($this->id));
105
$this->assertInstanceOf(isInterchangeableItem::class, $this->factory->repositoryLink($this->id));
106
$this->assertNotInstanceOf(isInterchangeableItem::class, $this->factory->separator($this->id));
107
}
108
}
ILIAS\GlobalScreen\MainMenu\FactoryImplTest
Class FactoryImplTest.
Definition:
FactoryImplTest.php:38
MainMenuItemFactory
StaticMainMenuProvider
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\$id
$id
Definition:
FactoryImplTest.php:43
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\$factory
$factory
Definition:
FactoryImplTest.php:55
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\$identification
$identification
Definition:
FactoryImplTest.php:51
ILIAS\GlobalScreen\Scope\MainMenu\Factory\MainMenuItemFactory
Class MainMenuItemFactory This factory provides you all available types for MainMenu GlobalScreen Ite...
Definition:
MainMenuItemFactory.php:37
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\testInterchangeableContraints
testInterchangeableContraints()
Definition:
FactoryImplTest.php:99
IdentificationInterface
ILIAS\GlobalScreen\MainMenu
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
IdentificationFactoryTest.php:19
NullProviderFactory
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\testAvailableMethods
testAvailableMethods()
Definition:
FactoryImplTest.php:74
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\$provider
$provider
Definition:
FactoryImplTest.php:47
ReflectionClass
ILIAS\GlobalScreen\Provider\NullProviderFactory
Class NullProviderFactory.
Definition:
NullProviderFactory.php:29
ILIAS\GlobalScreen\Identification\IdentificationFactory
Class IdentificationFactory All elements in the GlobalScreen service must be identifiable for the sup...
Definition:
IdentificationFactory.php:47
ReflectionMethod
ILIAS\GlobalScreen\MainMenu\FactoryImplTest\setUp
setUp()
Definition:
FactoryImplTest.php:61
TestCase
isInterchangeableItem
IdentificationFactory
tests
GlobalScreen
MainMenu
FactoryImplTest.php
Generated on Sat Apr 5 2025 21:01:48 for ILIAS by
1.8.13 (using
Doxyfile
)