Class InitCtrlServiceTest.
More...
◆ testCtrlServiceInitializationSuccess()
InitCtrlServiceTest::testCtrlServiceInitializationSuccess |
( |
| ) |
|
Definition at line 67 of file InitCtrlServiceTest.php.
References $dic, and init().
70 $dic[
'refinery'] = $this->createMock(Refinery::class);
72 $dic[
'http.response_sender_strategy'] = $this->createMock(DefaultResponseSenderStrategy::class);
73 $dic[
'http'] = $this->createMock(HttpService::class);
77 $this->createMock(ServerRequestInterface::class)
79 $dic[
'component.factory'] = $this->createMock(ilComponentFactory::class);
81 $this->assertFalse(isset(
$dic[
'ilCtrl']));
85 $this->assertTrue(isset(
$dic[
'ilCtrl']));
86 $this->assertInstanceOf(
87 ilCtrlInterface::class,
Class InitCtrlService wraps the initialization of ilCtrl.
Customizing of pimple-DIC for ILIAS.
◆ testCtrlServiceInitializationWithoutHttpServices()
InitCtrlServiceTest::testCtrlServiceInitializationWithoutHttpServices |
( |
| ) |
|
Definition at line 45 of file InitCtrlServiceTest.php.
References $dic, and init().
49 $dic[
'refinery'] = $this->createMock(Refinery::class);
51 $this->expectException(ilCtrlException::class);
52 $this->expectExceptionMessage(
"Cannot initialize ilCtrl if HTTP Services are not yet available.");
Class InitCtrlService wraps the initialization of ilCtrl.
Customizing of pimple-DIC for ILIAS.
◆ testCtrlServiceInitializationWithoutRefinery()
InitCtrlServiceTest::testCtrlServiceInitializationWithoutRefinery |
( |
| ) |
|
Definition at line 34 of file InitCtrlServiceTest.php.
References $dic, and init().
38 $dic[
'http'] = $this->createMock(HttpService::class);
40 $this->expectException(ilCtrlException::class);
41 $this->expectExceptionMessage(
"Cannot initialize ilCtrl if Refinery Factory is not yet available.");
Class InitCtrlService wraps the initialization of ilCtrl.
Customizing of pimple-DIC for ILIAS.
The documentation for this class was generated from the following file: