Exemplo n.º 1
0
 /**
  * @testdox Allows setting the name of a company without organization
  * @covers Jobs\Entity\Job::setApplyId
  * @covers Jobs\Entity\Job::getApplyId
  */
 public function testSetGetApllyId()
 {
     $input = "MyRerefernce";
     $this->target->setApplyId($input);
     $this->assertEquals($this->target->getApplyId(), $input);
 }