Exemplo n.º 1
0
 /**
  * @testdox Allows setting the job location
  * @covers Jobs\Entity\Job::getLocation
  * @covers Jobs\Entity\Job::setLocation
  */
 public function testSetGetLocation()
 {
     $location = 'Frankfurt am Main';
     $this->target->setLocation($location);
     $this->assertEquals($location, $this->target->getLocation());
 }