/**
  * Initialize test case
  */
 public function setUp()
 {
     require_once __DIR__ . '/../Kernel/TestKernel.php';
     $kernel = new \TestKernel('test', false);
     $kernel->boot();
     $this->container = $kernel->getContainer();
 }
 public function test()
 {
     $kernel = new TestKernel();
     $kernel->boot();
 }