public function testEnableDebugMode()
 {
     $storage = new \FabysCore\Component\Cache\Storage\FileStorage(__DIR__ . "/tests_tmp");
     $app = new Application($storage);
     $this->assertFalse($app->isInDebugMode());
     $app->enableDebugMode();
     $this->assertTrue($app->isInDebugMode());
 }