public function testBasicData()
 {
     $app = $this->getApp();
     $request = Request::create('/', 'GET', [], [], [], []);
     $response = $app->handle($request);
     $data = new BoltDataCollector($app);
     $data->collect($request, $response);
     $this->assertNotEmpty($data->getName());
     $this->assertNotEmpty($data->getVersion());
     $this->assertNotEmpty($data->getPayoff());
     $this->assertNotEmpty($data->getDashboardLink());
     $this->assertEmpty($data->getEditLink());
     $this->assertEmpty($data->getEditTitle());
 }