ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
assAnswerImagemapTest Class Reference

Unit tests. More...

+ Inheritance diagram for assAnswerImagemapTest:
+ Collaboration diagram for assAnswerImagemapTest:

Public Member Functions

 test_instantiateObjectSimple ()
 
 test_setGetCoords ()
 
 test_setGetArea ()
 
 test_setGetPointsUnchecked ()
 
 test_setGetPointsUnchecked_shouldNullifyOnNonNumericPoints ()
 

Protected Member Functions

 setUp ()
 

Protected Attributes

 $backupGlobals = false
 

Detailed Description

Unit tests.

Author
Maximilian Becker mbeck.nosp@m.er@d.nosp@m.ataba.nosp@m.y.de

Definition at line 11 of file assAnswerImagemapTest.php.

Member Function Documentation

◆ setUp()

assAnswerImagemapTest::setUp ( )
protected

Definition at line 15 of file assAnswerImagemapTest.php.

References defined.

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  }
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
Definition: bootstrap.php:27

◆ test_instantiateObjectSimple()

assAnswerImagemapTest::test_instantiateObjectSimple ( )

Definition at line 26 of file assAnswerImagemapTest.php.

27  {
28  // Arrange
29  require_once './Modules/TestQuestionPool/classes/class.assAnswerImagemap.php';
30 
31  // Act
32  $instance = new ASS_AnswerImagemap();
33 
34  // Assert
35  $this->assertInstanceOf('ASS_AnswerImagemap', $instance);
36  }
Class for true/false or yes/no answers.

◆ test_setGetArea()

assAnswerImagemapTest::test_setGetArea ( )

Definition at line 53 of file assAnswerImagemapTest.php.

54  {
55  // Arrange
56  require_once './Modules/TestQuestionPool/classes/class.assAnswerImagemap.php';
57  $instance = new ASS_AnswerImagemap();
58 
59  // Act
60  $expected = "12345";
61  $instance->setArea($expected);
62  $actual = $instance->getArea();
63 
64  // Assert
65  $this->assertEquals($expected, $actual);
66  }
Class for true/false or yes/no answers.

◆ test_setGetCoords()

assAnswerImagemapTest::test_setGetCoords ( )

Definition at line 38 of file assAnswerImagemapTest.php.

39  {
40  // Arrange
41  require_once './Modules/TestQuestionPool/classes/class.assAnswerImagemap.php';
42  $instance = new ASS_AnswerImagemap();
43 
44  // Act
45  $expected = "12345";
46  $instance->setCoords($expected);
47  $actual = $instance->getCoords();
48 
49  // Assert
50  $this->assertEquals($expected, $actual);
51  }
Class for true/false or yes/no answers.

◆ test_setGetPointsUnchecked()

assAnswerImagemapTest::test_setGetPointsUnchecked ( )

Definition at line 68 of file assAnswerImagemapTest.php.

69  {
70  // Arrange
71  require_once './Modules/TestQuestionPool/classes/class.assAnswerImagemap.php';
72  $instance = new ASS_AnswerImagemap();
73 
74  // Act
75  $expected = "12345";
76  $instance->setPointsUnchecked($expected);
77  $actual = $instance->getPointsUnchecked();
78 
79  // Assert
80  $this->assertEquals($expected, $actual);
81  }
Class for true/false or yes/no answers.

◆ test_setGetPointsUnchecked_shouldNullifyOnNonNumericPoints()

assAnswerImagemapTest::test_setGetPointsUnchecked_shouldNullifyOnNonNumericPoints ( )

Definition at line 83 of file assAnswerImagemapTest.php.

84  {
85  // Arrange
86  require_once './Modules/TestQuestionPool/classes/class.assAnswerImagemap.php';
87  $instance = new ASS_AnswerImagemap();
88 
89  // Act
90  $expected = 0.0;
91  $instance->setPointsUnchecked('Günther');
92  $actual = $instance->getPointsUnchecked();
93 
94  // Assert
95  $this->assertEquals($expected, $actual);
96  }
Class for true/false or yes/no answers.

Field Documentation

◆ $backupGlobals

assAnswerImagemapTest::$backupGlobals = false
protected

Definition at line 13 of file assAnswerImagemapTest.php.


The documentation for this class was generated from the following file: