/**
  * test for getting events through RESTFUL API
  *
  * @return void
  */
 public function testGetEvents()
 {
     $dataAccess = new DataAccess();
     //assert that it does not return an empty lists
     $this->assertNotEquals(null, $dataAccess->getEvents());
 }