3 declare(strict_types=1);
24 $dic[
'http'] = $this->createMock(HttpService::class);
26 $this->expectException(ilCtrlException::class);
27 $this->expectExceptionMessage(
"Cannot initialize ilCtrl if Refinery Factory is not yet available.");
35 $dic[
'refinery'] = $this->createMock(Refinery::class);
37 $this->expectException(ilCtrlException::class);
38 $this->expectExceptionMessage(
"Cannot initialize ilCtrl if HTTP Services are not yet available.");
56 $dic[
'refinery'] = $this->createMock(Refinery::class);
58 $dic[
'http.response_sender_strategy'] = $this->createMock(DefaultResponseSenderStrategy::class);
59 $dic[
'http'] = $this->createMock(HttpService::class);
63 $this->createMock(ServerRequestInterface::class)
65 $dic[
'component.factory'] = $this->createMock(ilComponentFactory::class);
67 $this->assertFalse(isset(
$dic[
'ilCtrl']));
71 $this->assertTrue(isset(
$dic[
'ilCtrl']));
72 $this->assertInstanceOf(
73 ilCtrlInterface::class,
Class InitCtrlService wraps the initialization of ilCtrl.
Class InitCtrlServiceTest.
Customizing of pimple-DIC for ILIAS.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testCtrlServiceInitializationWithoutRefinery()
testCtrlServiceInitializationSuccess()
testCtrlServiceInitializationWithoutHttpServices()