/**
  * Boot the IoC
  */
 protected function bootIoC()
 {
     IoC::boot();
 }
Beispiel #2
0
 /**
  * @test
  *
  * @covers ::getInstance
  * @covers ::boot
  * @covers ::__construct
  * @covers ::setupContainer
  */
 public function canObtainInstance()
 {
     //$ioc = IoC::getInstance();
     $ioc = IoC::boot();
     $this->assertNotNull($ioc);
 }