4use PHPUnit\Framework\TestCase;
6require_once(
'./libs/composer/vendor/autoload.php');
19 protected function setUp() : void
26 $this->assertFalse($this->DIC->isDependencyAvailable(
"ctrl"));
31 $this->DIC[
"ilCtrl"] =
function () {
33 $this->assertTrue($this->DIC->isDependencyAvailable(
"ctrl"));
An exception for terminatinating execution or to throw for unit testing.
Customizing of pimple-DIC for ILIAS.
testIsDependencyAvailableIfNotAvailable()
testIsDependencyAvailableIfAvailable()