30     protected function setUp(): void
    34         $this->setGlobalVariable(
'ilLog', $this->createMock(ilLogger::class));
    36         $ilCtrl_mock = $this->getMockBuilder(ilCtrl::class)->disableOriginalConstructor()->getMock();
    37         $ilCtrl_mock->expects($this->any())->method(
'saveParameter');
    38         $ilCtrl_mock->expects($this->any())->method(
'saveParameterByClass');
    39         $this->setGlobalVariable(
'ilCtrl', $ilCtrl_mock);
    42         $ilias_mock->account = 
new stdClass();
    43         $ilias_mock->account->id = 6;
    44         $ilias_mock->account->fullname = 
'Esther Tester';
    45         $this->setGlobalVariable(
'ilias', $ilias_mock);
    52         $this->assertInstanceOf(assNumericGUI::class, $instance);
 This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
test_instantiateObject_shouldReturnInstance()