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
ContentViewManagerTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
use
PHPUnit\Framework\TestCase
;
6
12
class
ContentViewManagerTest
extends
TestCase
13
{
14
protected \ILIAS\Container\Content\ViewManager
$manager
;
15
16
protected
function
setUp
(): void
17
{
18
parent::setUp();
19
if
(!defined(
'ANONYMOUS_USER_ID'
)) {
20
define(
'ANONYMOUS_USER_ID'
, 13);
21
}
22
$view_repo = new \ILIAS\Container\Content\ViewSessionRepository();
23
$this->manager = new \ILIAS\Container\Content\ViewManager($view_repo, 5);
24
}
25
26
protected
function
tearDown
(): void
27
{
28
}
29
33
public
function
testAdminView
(): void
34
{
35
$manager =
$this->manager
;
36
37
$manager->setAdminView();
38
39
$this->assertEquals(
40
true
,
41
$manager->isAdminView()
42
);
43
$this->assertEquals(
44
false
,
45
$manager->isContentView()
46
);
47
}
48
52
public
function
testContentView
(): void
53
{
54
$manager =
$this->manager
;
55
56
$manager->setContentView();
57
58
$this->assertEquals(
59
false
,
60
$manager->isAdminView()
61
);
62
$this->assertEquals(
63
true
,
64
$manager->isContentView()
65
);
66
}
67
}
ContentViewManagerTest\testAdminView
testAdminView()
Test admin view.
Definition:
ContentViewManagerTest.php:33
ContentViewManagerTest\tearDown
tearDown()
Definition:
ContentViewManagerTest.php:26
ContentViewManagerTest\$manager
ILIAS Container Content ViewManager $manager
Definition:
ContentViewManagerTest.php:14
ContentViewManagerTest\setUp
setUp()
Definition:
ContentViewManagerTest.php:16
ContentViewManagerTest\testContentView
testContentView()
Test content view.
Definition:
ContentViewManagerTest.php:52
ContentViewManagerTest
Test clipboard repository.
Definition:
ContentViewManagerTest.php:12
TestCase
Services
Container
test
ContentViewManagerTest.php
Generated on Fri Apr 4 2025 22:02:13 for ILIAS by
1.8.13 (using
Doxyfile
)