ILIAS  release_8 Revision v8.24
assAnswerMultipleResponseTest Class Reference

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V. More...

+ Inheritance diagram for assAnswerMultipleResponseTest:
+ Collaboration diagram for assAnswerMultipleResponseTest:

Public Member Functions

 test_instantiateObjectSimple ()
 
 test_setGetPointsUnchecked ()
 
 test_setGetPointsUnchecked_InvalidPointsBecomeZero ()
 
 test_setGetPointsChecked ()
 

Protected Member Functions

 setUp ()
 
- Protected Member Functions inherited from assBaseTestCase
 setUp ()
 
 tearDown ()
 
 setGlobalVariable (string $name, $value)
 
 getGlobalTemplateMock ()
 
 getDatabaseMock ()
 
 getIliasMock ()
 

Protected Attributes

 $backupGlobals = false
 
- Protected Attributes inherited from assBaseTestCase
Container $dic = null
 

Detailed Description

This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Learning e.V.

ILIAS is licensed with the GPL-3.0, see https://www.gnu.org/licenses/gpl-3.0.en.html You should have received a copy of said license along with the source code, too.

If this is not the case or you just want to try ILIAS, you'll find us at: https://www.ilias.de https://github.com/ILIAS-eLearning Unit tests

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

Definition at line 26 of file assAnswerMultipleResponseTest.php.

Member Function Documentation

◆ setUp()

assAnswerMultipleResponseTest::setUp ( )
protected

Reimplemented from assBaseTestCase.

Definition at line 30 of file assAnswerMultipleResponseTest.php.

30 : void
31 {
32 chdir(dirname(__FILE__));
33 chdir('../../../');
34 }

◆ test_instantiateObjectSimple()

assAnswerMultipleResponseTest::test_instantiateObjectSimple ( )

Definition at line 36 of file assAnswerMultipleResponseTest.php.

36 : void
37 {
38 // Arrange
39 require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponse.php';
40
41 // Act
42 $instance = new ASS_AnswerMultipleResponse();
43
44 // Assert
45 $this->assertInstanceOf('ASS_AnswerMultipleResponse', $instance);
46 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

◆ test_setGetPointsChecked()

assAnswerMultipleResponseTest::test_setGetPointsChecked ( )

Definition at line 78 of file assAnswerMultipleResponseTest.php.

78 : void
79 {
80 // Arrange
81 require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponse.php';
82 $instance = new ASS_AnswerMultipleResponse();
83 $expected = 2;
84
85 // Act
86 $instance->setPointsChecked($expected);
87 $actual = $instance->getPointsChecked();
88
89 // Assert
90 $this->assertEquals($expected, $actual);
91 }

◆ test_setGetPointsUnchecked()

assAnswerMultipleResponseTest::test_setGetPointsUnchecked ( )

Definition at line 48 of file assAnswerMultipleResponseTest.php.

48 : void
49 {
50 // Arrange
51 require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponse.php';
52 $instance = new ASS_AnswerMultipleResponse();
53 $expected = 1;
54
55 // Act
56 $instance->setPointsUnchecked($expected);
57 $actual = $instance->getPointsUnchecked();
58
59 // Assert
60 $this->assertEquals($expected, $actual);
61 }

◆ test_setGetPointsUnchecked_InvalidPointsBecomeZero()

assAnswerMultipleResponseTest::test_setGetPointsUnchecked_InvalidPointsBecomeZero ( )

Definition at line 63 of file assAnswerMultipleResponseTest.php.

63 : void
64 {
65 // Arrange
66 require_once './Modules/TestQuestionPool/classes/class.assAnswerMultipleResponse.php';
67 $instance = new ASS_AnswerMultipleResponse();
68 $expected = 0;
69
70 // Act
71 $instance->setPointsUnchecked('Günther');
72 $actual = $instance->getPointsUnchecked();
73
74 // Assert
75 $this->assertEquals($expected, $actual);
76 }

Field Documentation

◆ $backupGlobals

assAnswerMultipleResponseTest::$backupGlobals = false
protected

Definition at line 28 of file assAnswerMultipleResponseTest.php.


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