ILIAS  release_8 Revision v8.24
assClozeTestGUITest 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 assClozeTestGUITest:
+ Collaboration diagram for assClozeTestGUITest:

Public Member Functions

 test_instantiateObject_shouldReturnInstance ()
 

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

Member Function Documentation

◆ setUp()

assClozeTestGUITest::setUp ( )
protected

Reimplemented from assBaseTestCase.

Definition at line 30 of file assClozeTestGUITest.php.

30 : void
31 {
32 parent::setUp();
33
34 $ilCtrl_mock = $this->getMockBuilder(ilCtrl::class)
35 ->disableOriginalConstructor()
36 ->getMock();
37 $ilCtrl_mock->method('saveParameter');
38 $ilCtrl_mock->method('saveParameterByClass');
39 $this->setGlobalVariable('ilCtrl', $ilCtrl_mock);
40
41 $lng_mock = $this->getMockBuilder(ilLanguage::class)
42 ->disableOriginalConstructor()
43 ->onlyMethods(['txt'])
44 ->getMock();
45 $lng_mock->method('txt')->will($this->returnValue('Test'));
46 $this->setGlobalVariable('lng', $lng_mock);
47
48 $ilias_mock = new stdClass();
49 $ilias_mock->account = new stdClass();
50 $ilias_mock->account->id = 6;
51 $ilias_mock->account->fullname = 'Esther Tester';
52
53 $this->setGlobalVariable('ilias', $ilias_mock);
54 $this->setGlobalVariable('tpl', $this->getGlobalTemplateMock());
55 }
setGlobalVariable(string $name, $value)

References assBaseTestCase\getGlobalTemplateMock(), and assBaseTestCase\setGlobalVariable().

+ Here is the call graph for this function:

◆ test_instantiateObject_shouldReturnInstance()

assClozeTestGUITest::test_instantiateObject_shouldReturnInstance ( )

@runInSeparateProcess @preserveGlobalState enabled

Definition at line 57 of file assClozeTestGUITest.php.

57 : void
58 {
63 //$this->markTestIncomplete('Needs mock ilCtrl.');
64 // Arrange
65 require_once './Modules/TestQuestionPool/classes/class.assClozeTestGUI.php';
66
67
68
69 // Act
70 $instance = new assClozeTestGUI();
71
72 $this->assertInstanceOf('assClozeTestGUI', $instance);
73 }
Cloze test question GUI representation.

Field Documentation

◆ $backupGlobals

assClozeTestGUITest::$backupGlobals = false
protected

Definition at line 28 of file assClozeTestGUITest.php.


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