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

Unit tests. More...

+ Inheritance diagram for assErrorTextGUITest:
+ Collaboration diagram for assErrorTextGUITest:

Public Member Functions

 test_instantiateObject_shouldReturnInstance ()
 

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

Member Function Documentation

◆ setUp()

assErrorTextGUITest::setUp ( )
protected

Definition at line 15 of file assErrorTextGUITest.php.

References $ilCtrl, $lng, array, and 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 
25  require_once './Services/UICore/classes/class.ilCtrl.php';
26  $ilCtrl_mock = $this->createMock('ilCtrl');
27  $ilCtrl_mock->expects($this->any())->method('saveParameter');
28  $ilCtrl_mock->expects($this->any())->method('saveParameterByClass');
29  global $ilCtrl;
30  $ilCtrl = $ilCtrl_mock;
31 
32  require_once './Services/Language/classes/class.ilLanguage.php';
33  $lng_mock = $this->createMock('ilLanguage', array('txt'), array(), '', false);
34  //$lng_mock->expects( $this->once() )->method( 'txt' )->will( $this->returnValue('Test') );
35  global $lng;
36  $lng = $lng_mock;
37 
38  $ilias_mock = new stdClass();
39  $ilias_mock->account = new stdClass();
40  $ilias_mock->account->id = 6;
41  $ilias_mock->account->fullname = 'Esther Tester';
42  global $ilias;
43  $ilias = $ilias_mock;
44  }
global $ilCtrl
Definition: ilias.php:18
Create styles array
The data for the language used.
global $lng
Definition: privfeed.php:17
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
Definition: bootstrap.php:27

◆ test_instantiateObject_shouldReturnInstance()

assErrorTextGUITest::test_instantiateObject_shouldReturnInstance ( )

Definition at line 46 of file assErrorTextGUITest.php.

47  {
48  //$this->markTestIncomplete('Needs mock.');
49  // Arrange
50  require_once './Modules/TestQuestionPool/classes/class.assErrorTextGUI.php';
51 
52  // Act
53  $instance = new assErrorTextGUI();
54 
55  $this->assertInstanceOf('assErrorTextGUI', $instance);
56  }
The assErrorTextGUI class encapsulates the GUI representation for error text questions.

Field Documentation

◆ $backupGlobals

assErrorTextGUITest::$backupGlobals = false
protected

Definition at line 13 of file assErrorTextGUITest.php.


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