setUpVfsDir(); $this->mockApp($this->root); $this->baseObject = new BaseObject(); } /** * Test the getApp() function. * @return void */ public function testGetApp() { $this->assertInstanceOf(App::class, $this->baseObject->getApp()); } /** * Test the setApp() function. * @return void */ public function testSetApp() { $this->assertNull($this->baseObject->setApp($this->app)); $this->assertEquals($this->app, $this->baseObject->getApp()); } }