ILIAS
release_4-4 Revision
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
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
k
l
m
n
o
p
q
r
s
t
u
v
w
y
+
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
k
l
m
o
p
r
s
t
u
v
w
x
+
Variables
$
(
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
ilModulesTestSuite.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
class
ilModulesTestSuite
extends
PHPUnit_Framework_TestSuite
5
{
6
public
static
function
suite
()
7
{
8
if
(defined(
'ILIAS_PHPUNIT_CONTEXT'
))
9
{
10
include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php"
);
11
ilUnitUtil::performInitialisation();
12
}
13
else
14
{
15
chdir( dirname( __FILE__ ) );
16
chdir(
'../../../'
);
17
}
18
19
$suite
=
new
ilModulesTestSuite
();
20
21
include_once(
"./Modules/Test/test/ilassMarkTest.php"
);
22
$suite
->addTestSuite(
"ilassMarkTest"
);
23
24
include_once(
"./Modules/Test/test/ilassMarkSchemaTest.php"
);
25
$suite
->addTestSuite(
"ilassMarkSchemaTest"
);
26
27
include_once(
"./Modules/Test/test/ilTestFinalMarkLangVarBuilderTest.php"
);
28
$suite
->addTestSuite(
"ilTestFinalMarkLangVarBuilderTest"
);
29
30
return
$suite
;
31
}
32
}
$suite
$suite
Definition:
CleanUpTest.php:406
ilModulesTestSuite
Definition:
ilModulesTestSuite.php:4
ilModulesTestSuite\suite
static suite()
Definition:
ilModulesTestSuite.php:6
PHPUnit_Framework_TestSuite
Modules
Test
test
ilModulesTestSuite.php
Generated on Mon Dec 21 2020 19:01:07 for ILIAS by
1.8.13 (using
Doxyfile
)