public function testEntrantsCanBeAdded()
 {
     $entrant = new Entrant();
     $entrant->setName("Chris");
     $application = new Application();
     $application->addEntrant($entrant);
     $this->assertEquals("Chris", $application->getEntrant()->getName());
 }