Beispiel #1
0
 /**
  * @testdox Allows to set the publisher URI of a job posting
  * @covers Jobs\Entity\Job::getUriPublisher
  * @covers Jobs\Entity\Job::setUriPublisher
  */
 public function testSetGetUriPublisher()
 {
     $link = 'http://server.de/apply?a=1&b=2';
     $this->target->setUriPublisher($link);
     $this->assertEquals($link, $this->target->getUriPublisher());
 }