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
CategoryReferenceTest.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
use
PHPUnit\Framework\TestCase
;
22
28
class
CategoryReferenceTest
extends
TestCase
29
{
30
protected
function
setUp
(): void
31
{
32
$dic
=
new
ILIAS\DI\Container
();
33
$GLOBALS
[
'DIC'
] =
$dic
;
34
35
parent::setUp();
36
37
$this->
setGlobalVariable
(
38
"ilAccess"
,
39
$this->createConfiguredMock(
40
ilAccess::class,
41
[
42
"checkAccess"
=>
true
43
]
44
)
45
);
46
}
47
52
protected
function
setGlobalVariable
(
string
$name, $value): void
53
{
54
global
$DIC
;
55
56
$GLOBALS
[$name] = $value;
57
58
unset($DIC[$name]);
59
$DIC[$name] =
static
function
(
\ILIAS\DI\Container
$c
) use ($value) {
60
return
$value;
61
};
62
}
63
64
protected
function
tearDown
(): void
65
{
66
}
67
71
public
function
testCommands
(): void
72
{
73
$commands =
ilObjCategoryReferenceAccess::_getCommands
(10);
74
$this->assertIsArray($commands);
75
}
76
}
CategoryReferenceTest\setUp
setUp()
Definition:
CategoryReferenceTest.php:30
CategoryReferenceTest\setGlobalVariable
setGlobalVariable(string $name, $value)
Definition:
CategoryReferenceTest.php:52
CategoryReferenceTest
Test clipboard repository.
Definition:
CategoryReferenceTest.php:28
CategoryReferenceTest\tearDown
tearDown()
Definition:
CategoryReferenceTest.php:64
CategoryReferenceTest\testCommands
testCommands()
Test commands.
Definition:
CategoryReferenceTest.php:71
$c
$c
Definition:
deliver.php:25
ILIAS\DI\Container
Customizing of pimple-DIC for ILIAS.
Definition:
Container.php:35
Container
ilObjectAccess\_getCommands
static _getCommands()
get commands
Definition:
class.ilObjectAccess.php:64
$GLOBALS
$GLOBALS["DIC"]
Definition:
wac.php:53
$DIC
global $DIC
Definition:
shib_login.php:22
$dic
$dic
Definition:
result.php:31
TestCase
TestCase
components
ILIAS
CategoryReference
tests
CategoryReferenceTest.php
Generated on Wed Apr 2 2025 23:02:25 for ILIAS by
1.8.13 (using
Doxyfile
)