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
ContentStyleStandardGUIRequestTest.php
Go to the documentation of this file.
1
<?php
2
3
declare(strict_types=1);
4
5
use
PHPUnit\Framework\TestCase
;
6
use
ILIAS\Style\Content\StandardGUIRequest
;
7
use
ILIAS\Data\Factory
;
8
14
class
ContentStyleStandardGUIRequestTest
extends
TestCase
15
{
16
protected
function
tearDown
(): void
17
{
18
}
19
20
protected
function
getRequest
(array $get, array
$post
):
StandardGUIRequest
21
{
22
$http_mock = $this->createMock(
ILIAS
\
HTTP
\Services::class);
23
$lng_mock = $this->createMock(ilLanguage::class);
24
$data
=
new
Factory
();
25
$refinery
= new \ILIAS\Refinery\Factory(
$data
, $lng_mock);
26
return
new
StandardGUIRequest
(
27
$http_mock,
28
$refinery
,
29
$get,
30
$post
31
);
32
}
33
34
public
function
testRefId
(): void
35
{
36
$request = $this->
getRequest
(
37
[
38
"ref_id"
=>
"5"
39
],
40
[]
41
);
42
43
$this->assertEquals(
44
5,
45
$request->getRefId()
46
);
47
}
48
49
50
public
function
testTemplateId
(): void
51
{
52
$request = $this->
getRequest
(
53
[
54
"t_id"
=>
"7"
55
],
56
[]
57
);
58
59
$this->assertEquals(
60
7,
61
$request->getTemplateId()
62
);
63
}
64
65
public
function
testCharacteristics
(): void
66
{
67
$request = $this->
getRequest
(
68
[
69
],
70
[
71
"char"
=> [
72
"Foo"
,
73
"Bar"
74
]
75
]
76
);
77
78
$this->assertEquals(
79
[
"Foo"
,
"Bar"
],
80
$request->getCharacteristics()
81
);
82
}
83
}
ILIAS\Style\Content\StandardGUIRequest
Definition:
class.StandardGUIRequest.php:27
$data
$data
Definition:
ltiregistration.php:31
ContentStyleStandardGUIRequestTest\getRequest
getRequest(array $get, array $post)
Definition:
ContentStyleStandardGUIRequestTest.php:20
ContentStyleStandardGUIRequestTest\tearDown
tearDown()
Definition:
ContentStyleStandardGUIRequestTest.php:16
ILIAS
Class ChatMainBarProvider .
ContentStyleStandardGUIRequestTest\testTemplateId
testTemplateId()
Definition:
ContentStyleStandardGUIRequestTest.php:50
ContentStyleStandardGUIRequestTest\testCharacteristics
testCharacteristics()
Definition:
ContentStyleStandardGUIRequestTest.php:65
HTTP
Factory
Factory
ContentStyleStandardGUIRequestTest
Test clipboard repository.
Definition:
ContentStyleStandardGUIRequestTest.php:14
ContentStyleStandardGUIRequestTest\testRefId
testRefId()
Definition:
ContentStyleStandardGUIRequestTest.php:34
$post
$post
Definition:
ltitoken.php:49
StandardGUIRequest
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
TestCase
ILIAS\Repository\$refinery
Refinery Factory $refinery
Definition:
trait.BaseGUIRequest.php:36
Services
Style
Content
test
ContentStyleStandardGUIRequestTest.php
Generated on Thu Apr 3 2025 22:02:34 for ILIAS by
1.8.13 (using
Doxyfile
)