ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
DIContainerTest.php
Go to the documentation of this file.
1 <?php
2 namespace ILIAS\DI;
3 
5 
6 require_once('./libs/composer/vendor/autoload.php');
7 
12 {
13 
17  protected $DIC;
18 
19  protected function setUp() : void
20  {
21  $this->DIC = new Container();
22  }
23 
25  {
26  $this->assertFalse($this->DIC->isDependencyAvailable("ctrl"));
27  }
28 
30  {
31  $this->DIC["ilCtrl"] = function () {
32  };
33  $this->assertTrue($this->DIC->isDependencyAvailable("ctrl"));
34  }
35 }
Customizing of pimple-DIC for ILIAS.
Definition: Container.php:18
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Class DIContainerTest.