ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
assTextSubsetTest.php
Go to the documentation of this file.
1 <?php
2 
27 {
28  protected $backupGlobals = false;
29 
30  protected function setUp(): void
31  {
32  chdir(__DIR__ . '/../../../../');
33 
34  parent::setUp();
35 
36  $ilCtrl_mock = $this->createMock('ilCtrl');
37  $ilCtrl_mock->expects($this->any())->method('saveParameter');
38  $ilCtrl_mock->expects($this->any())->method('saveParameterByClass');
39  $this->setGlobalVariable('ilCtrl', $ilCtrl_mock);
40 
41  $lng_mock = $this->createMock('ilLanguage', ['txt'], [], '', false);
42  //$lng_mock->expects($this->once())->method('txt')->will($this->returnValue('Test'));
43  $this->setGlobalVariable('lng', $lng_mock);
44 
45  $this->setGlobalVariable('ilias', $this->getIliasMock());
46  $this->setGlobalVariable('ilDB', $this->getDatabaseMock());
47  }
48 
50  {
51  $instance = new assTextSubset();
52 
53  $this->assertInstanceOf(assTextSubset::class, $instance);
54  }
55 }
Class assBaseTestCase.
Class for TextSubset questions.
test_instantiateObject_shouldReturnInstance()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...