ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
assNumericGUITest 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 assNumericGUITest:
+ Collaboration diagram for assNumericGUITest:

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

Member Function Documentation

◆ setUp()

assNumericGUITest::setUp ( )
protected

Definition at line 30 of file assNumericGUITest.php.

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

30  : void
31  {
32  parent::setUp();
33 
34  $ilCtrl_mock = $this->getMockBuilder(ilCtrl::class)->disableOriginalConstructor()->getMock();
35  $ilCtrl_mock->expects($this->any())->method('saveParameter');
36  $ilCtrl_mock->expects($this->any())->method('saveParameterByClass');
37  $this->setGlobalVariable('ilCtrl', $ilCtrl_mock);
38 
39  $ilias_mock = new stdClass();
40  $ilias_mock->account = new stdClass();
41  $ilias_mock->account->id = 6;
42  $ilias_mock->account->fullname = 'Esther Tester';
43  $this->setGlobalVariable('ilias', $ilias_mock);
44  $this->setGlobalVariable('tpl', $this->getGlobalTemplateMock());
45  }
setGlobalVariable(string $name, $value)
+ Here is the call graph for this function:

◆ test_instantiateObject_shouldReturnInstance()

assNumericGUITest::test_instantiateObject_shouldReturnInstance ( )

Definition at line 47 of file assNumericGUITest.php.

47  : void
48  {
49  // Arrange
50  require_once './Modules/TestQuestionPool/classes/class.assNumericGUI.php';
51 
52  // Act
53  $instance = new assNumericGUI();
54 
55  $this->assertInstanceOf('assNumericGUI', $instance);
56  }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

Field Documentation

◆ $backupGlobals

assNumericGUITest::$backupGlobals = false
protected

Definition at line 28 of file assNumericGUITest.php.


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