Exemplo n.º 1
0
 /**
  * @testdox Allows setting the application link of a job posting
  * @covers Jobs\Entity\Job::getUriApply
  * @covers Jobs\Entity\Job::setUriApply
  */
 public function testSetGetUriApply()
 {
     $link = 'http://server.de/apply?a=1&b=2';
     $this->target->setUriApply($link);
     $this->assertEquals($link, $this->target->getUriApply());
 }