ILIAS
Release_5_0_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
ilAnswerWizardInputGUITest.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
ilAnswerWizardInputGUITest
extends
PHPUnit_Framework_TestCase
12
{
13
protected
$backupGlobals
= FALSE;
14
15
protected
function
setUp
()
16
{
17
if
(defined(
'ILIAS_PHPUNIT_CONTEXT'
))
18
{
19
include_once(
"./Services/PHPUnit/classes/class.ilUnitUtil.php"
);
20
ilUnitUtil::performInitialisation();
21
}
22
else
23
{
24
chdir( dirname( __FILE__ ) );
25
chdir(
'../../../'
);
26
}
27
}
28
29
public
function
test_instantiateObject_shouldReturnInstance
()
30
{
31
// Arrange
32
require_once
'./Services/Form/classes/class.ilTextInputGUI.php'
;
// I consider this a bug...
33
require_once
'./Modules/TestQuestionPool/classes/class.ilAnswerWizardInputGUI.php'
;
34
35
36
// Act
37
$instance =
new
ilAnswerWizardInputGUI
();
38
39
$this->assertInstanceOf(
'ilAnswerWizardInputGUI'
, $instance);
40
}
41
}
Modules
TestQuestionPool
test
ilAnswerWizardInputGUITest.php
Generated on Wed Apr 27 2016 21:01:23 for ILIAS by
1.8.1.2 (using
Doxyfile
)