ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
s
t
w
+
Functions
_
a
b
c
f
g
h
i
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
assTextSubsetTest.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
11
class
assTextSubsetTest
extends
assBaseTestCase
12
{
13
protected
$backupGlobals
=
false
;
14
15
protected
function
setUp
() : void
16
{
17
if
(defined(
'ILIAS_PHPUNIT_CONTEXT'
)) {
18
include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php"
);
19
ilUnitUtil::performInitialisation();
20
}
else
{
21
chdir(dirname(__FILE__));
22
chdir(
'../../../'
);
23
24
parent::setUp();
25
26
require_once
'./Services/UICore/classes/class.ilCtrl.php'
;
27
$ilCtrl_mock = $this->createMock(
'ilCtrl'
);
28
$ilCtrl_mock->expects($this->any())->method(
'saveParameter'
);
29
$ilCtrl_mock->expects($this->any())->method(
'saveParameterByClass'
);
30
$this->
setGlobalVariable
(
'ilCtrl'
, $ilCtrl_mock);
31
32
require_once
'./Services/Language/classes/class.ilLanguage.php'
;
33
$lng_mock = $this->createMock(
'ilLanguage'
, array(
'txt'
), array(),
''
,
false
);
34
//$lng_mock->expects( $this->once() )->method( 'txt' )->will( $this->returnValue('Test') );
35
$this->
setGlobalVariable
(
'lng'
, $lng_mock);
36
37
$this->
setGlobalVariable
(
'ilias'
, $this->
getIliasMock
());
38
$this->
setGlobalVariable
(
'tpl'
, $this->
getGlobalTemplateMock
());
39
$this->
setGlobalVariable
(
'ilDB'
, $this->
getDatabaseMock
());
40
}
41
}
42
43
public
function
test_instantiateObject_shouldReturnInstance
()
44
{
45
// Arrange
46
require_once
'./Modules/TestQuestionPool/classes/class.assTextSubset.php'
;
47
48
// Act
49
$instance =
new
assTextSubset
();
50
51
$this->assertInstanceOf(
'assTextSubset'
, $instance);
52
}
53
}
assTextSubsetTest\setUp
setUp()
Definition:
assTextSubsetTest.php:15
assBaseTestCase
Class assBaseTestCase.
Definition:
assBaseTestCase.php:9
assTextSubset
Class for TextSubset questions.
Definition:
class.assTextSubset.php:26
assTextSubsetTest\test_instantiateObject_shouldReturnInstance
test_instantiateObject_shouldReturnInstance()
Definition:
assTextSubsetTest.php:43
assBaseTestCase\getGlobalTemplateMock
getGlobalTemplateMock()
Definition:
assBaseTestCase.php:38
assTextSubsetTest\$backupGlobals
$backupGlobals
Definition:
assTextSubsetTest.php:13
assBaseTestCase\setGlobalVariable
setGlobalVariable($name, $value)
Definition:
assBaseTestCase.php:25
assBaseTestCase\getIliasMock
getIliasMock()
Definition:
assBaseTestCase.php:54
assBaseTestCase\getDatabaseMock
getDatabaseMock()
Definition:
assBaseTestCase.php:46
assTextSubsetTest
Unit tests.
Definition:
assTextSubsetTest.php:11
Modules
TestQuestionPool
test
assTextSubsetTest.php
Generated on Wed Apr 2 2025 20:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)