Пример #1
0
 public function testIsDebug()
 {
     $this->assertFalse($this->app->isDebug());
     $app = new App(null, true);
     $this->assertTrue($app->isDebug());
 }