ILIAS
Release_4_4_x_branch Revision 61816
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
ilTermsOfServiceTestSuite.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2012 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
require_once
'Services/Database/classes/class.ilDB.php'
;
5
require_once
'Services/Language/classes/class.ilLanguage.php'
;
6
11
class
ilTermsOfServiceTestSuite
extends
PHPUnit_Framework_TestSuite
12
{
16
public
static
function
suite
()
17
{
18
$suite
=
new
self
();
19
20
require_once
'Services/TermsOfService/test/factories/ilTermsOfServiceEntityFactoryTest.php'
;
21
$suite
->addTestSuite(
'ilTermsOfServiceEntityFactoryTest'
);
22
23
require_once
'Services/TermsOfService/test/factories/ilTermsOfServiceDataGatewayFactoryTest.php'
;
24
$suite
->addTestSuite(
'ilTermsOfServiceDataGatewayFactoryTest'
);
25
26
require_once
'Services/TermsOfService/test/factories/ilTermsOfServiceTableDataProviderFactoryTest.php'
;
27
$suite
->addTestSuite(
'ilTermsOfServiceTableDataProviderFactoryTest'
);
28
29
require_once
'Services/TermsOfService/test/provider/ilTermsOfServiceAgreementsByLanguageTableDataProviderTest.php'
;
30
$suite
->addTestSuite(
'ilTermsOfServiceAgreementsByLanguageTableDataProviderTest'
);
31
32
require_once
'Services/TermsOfService/test/provider/ilTermsOfServiceAcceptanceHistoryProviderTest.php'
;
33
$suite
->addTestSuite(
'ilTermsOfServiceAcceptanceHistoryProviderTest'
);
34
35
require_once
'Services/TermsOfService/test/entities/ilTermsOfServiceAcceptanceEntityTest.php'
;
36
$suite
->addTestSuite(
'ilTermsOfServiceAcceptanceEntityTest'
);
37
38
require_once
'Services/TermsOfService/test/gateways/ilTermsOfServiceAcceptanceDatabaseGatewayTest.php'
;
39
$suite
->addTestSuite(
'ilTermsOfServiceAcceptanceDatabaseGatewayTest'
);
40
41
require_once
'Services/TermsOfService/test/documents/ilTermsOfServiceFileSystemDocumentTest.php'
;
42
$suite
->addTestSuite(
'ilTermsOfServiceFileSystemDocumentTest'
);
43
44
return
$suite
;
45
}
46
}
Services
TermsOfService
test
ilTermsOfServiceTestSuite.php
Generated on Wed Apr 27 2016 20:02:01 for ILIAS by
1.8.1.2 (using
Doxyfile
)