Example #1
0
 public function testApp()
 {
     App::deleteInstance();
     $app = App::getInstance();
     $this->assertInstanceOf(App::class, $app);
     $this->app = new App(new Cache());
     $this->assertEquals(NULL, $this->app->non_existing_property);
 }