ILIAS
release_5-0 Revision 5.0.0-1144-gc4397b1f870
◀ 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
x
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
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
assAnswerBinaryStateImageTest.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
assAnswerBinaryStateImageTest
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
'./Modules/TestQuestionPool/classes/class.assAnswerBinaryStateImage.php'
;
33
34
// Act
35
$instance =
new
ASS_AnswerBinaryStateImage
();
36
37
$this->assertInstanceOf(
'ASS_AnswerBinaryStateImage'
, $instance);
38
}
39
40
public
function
test_setGetImage
()
41
{
42
// Arrange
43
require_once
'./Modules/TestQuestionPool/classes/class.assAnswerBinaryStateImage.php'
;
44
$instance =
new
ASS_AnswerBinaryStateImage
();
45
$expected =
'image'
;
46
// Act
47
$instance->setImage($expected);
48
$actual = $instance->getImage();
49
50
$this->assertEquals($expected, $actual );
51
}
52
}
ASS_AnswerBinaryStateImage
Class for answers with a binary state indicator.
Definition:
class.assAnswerBinaryStateImage.php:21
assAnswerBinaryStateImageTest\$backupGlobals
$backupGlobals
Definition:
assAnswerBinaryStateImageTest.php:13
PHPUnit_Framework_TestCase
assAnswerBinaryStateImageTest
Unit tests.
Definition:
assAnswerBinaryStateImageTest.php:11
assAnswerBinaryStateImageTest\test_instantiateObject_shouldReturnInstance
test_instantiateObject_shouldReturnInstance()
Definition:
assAnswerBinaryStateImageTest.php:29
assAnswerBinaryStateImageTest\setUp
setUp()
Definition:
assAnswerBinaryStateImageTest.php:15
assAnswerBinaryStateImageTest\test_setGetImage
test_setGetImage()
Definition:
assAnswerBinaryStateImageTest.php:40
Modules
TestQuestionPool
test
assAnswerBinaryStateImageTest.php
Generated on Mon Mar 31 2025 19:00:41 for ILIAS by
1.8.13 (using
Doxyfile
)