ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
assAnswerBinaryStateImageTest 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 assAnswerBinaryStateImageTest:
+ Collaboration diagram for assAnswerBinaryStateImageTest:

Public Member Functions

 test_instantiateObject_shouldReturnInstance ()
 
 test_setGetImage ()
 

Protected Member Functions

 setUp ()
 
- Protected Member Functions inherited from assBaseTestCase
 setUp ()
 
 tearDown ()
 
 getIRSSMock ()
 

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 assAnswerBinaryStateImageTest.php.

Member Function Documentation

◆ setUp()

assAnswerBinaryStateImageTest::setUp ( )
protected

Definition at line 30 of file assAnswerBinaryStateImageTest.php.

30  : void
31  {
32  chdir(__DIR__ . '/../../../../');
33  }

◆ test_instantiateObject_shouldReturnInstance()

assAnswerBinaryStateImageTest::test_instantiateObject_shouldReturnInstance ( )

Definition at line 35 of file assAnswerBinaryStateImageTest.php.

35  : void
36  {
37  $instance = new ASS_AnswerBinaryStateImage();
38 
39  $this->assertInstanceOf(ASS_AnswerBinaryStateImage::class, $instance);
40  }
Class for answers with a binary state indicator.

◆ test_setGetImage()

assAnswerBinaryStateImageTest::test_setGetImage ( )

Definition at line 42 of file assAnswerBinaryStateImageTest.php.

42  : void
43  {
44  $instance = new ASS_AnswerBinaryStateImage();
45  $expected = 'image';
46  $instance->setImage($expected);
47  $actual = $instance->getImage();
48 
49  $this->assertEquals($expected, $actual);
50  }
Class for answers with a binary state indicator.

Field Documentation

◆ $backupGlobals

assAnswerBinaryStateImageTest::$backupGlobals = false
protected

Definition at line 28 of file assAnswerBinaryStateImageTest.php.


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