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
ilCtrlStructureHelperTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
/* Copyright (c) 2021 Thibeau Fuhrer <thf@studer-raimann.ch> Extended GPL, see docs/LICENSE */
6
7
use
PHPUnit\Framework\TestCase
;
8
13
class
ilCtrlStructureHelperTest
extends
TestCase
14
{
15
public
function
testStructureHelperWithEmptyArrays
(): void
16
{
17
$helper =
new
ilCtrlStructureHelper
([], []);
18
19
$this->assertEmpty($helper->getStructure());
20
}
21
22
public
function
testStructureHelperWithCtrlStructure
(): void
23
{
24
$expected_value = [
'entry0'
];
25
$helper =
new
ilCtrlStructureHelper
([], $expected_value);
26
27
$this->assertEquals($expected_value, $helper->getStructure());
28
}
29
30
public
function
testStructureHelperUnnecessaryEntryFilter
(): void
31
{
32
$helper =
new
ilCtrlStructureHelper
(
33
[
34
'baseclass1'
,
35
],
36
[
37
'baseclass1'
=> [],
38
'unnecessary_class1'
=> [],
39
'unnecessary_class2'
=> [
40
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [],
41
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [],
42
],
43
'command_class_1'
=> [
44
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [],
45
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
46
'baseclass1'
,
47
],
48
],
49
]
50
);
51
52
$this->assertEquals(
53
[
54
'baseclass1'
=> [],
55
'command_class_1'
=> [
56
ilCtrlStructureInterface::KEY_CLASS_CHILDREN
=> [],
57
ilCtrlStructureInterface::KEY_CLASS_PARENTS
=> [
58
'baseclass1'
,
59
],
60
],
61
],
62
$helper->filterUnnecessaryEntries()->getStructure()
63
);
64
}
65
}
ilCtrlStructureHelper
Class ilCtrlStructureHelper.
Definition:
class.ilCtrlStructureHelper.php:11
ilCtrlStructureInterface\KEY_CLASS_CHILDREN
const KEY_CLASS_CHILDREN
Definition:
interface.ilCtrlStructureInterface.php:20
ilCtrlStructureInterface\KEY_CLASS_PARENTS
const KEY_CLASS_PARENTS
Definition:
interface.ilCtrlStructureInterface.php:19
ilCtrlStructureHelperTest\testStructureHelperWithEmptyArrays
testStructureHelperWithEmptyArrays()
Definition:
ilCtrlStructureHelperTest.php:15
ilCtrlStructureHelperTest\testStructureHelperWithCtrlStructure
testStructureHelperWithCtrlStructure()
Definition:
ilCtrlStructureHelperTest.php:22
ilCtrlStructureHelperTest\testStructureHelperUnnecessaryEntryFilter
testStructureHelperUnnecessaryEntryFilter()
Definition:
ilCtrlStructureHelperTest.php:30
ilCtrlStructureHelperTest
Class ilCtrlStructureHelperTest.
Definition:
ilCtrlStructureHelperTest.php:13
TestCase
Services
UICore
test
Structure
ilCtrlStructureHelperTest.php
Generated on Fri Apr 4 2025 22:03:04 for ILIAS by
1.8.13 (using
Doxyfile
)