Beispiel #1
0
 /**
  * @testdox Allows to set keywords for a job posting
  * @covers Jobs\Entity\Job::getKeywords
  * @covers Jobs\Entity\Job::setKeywords
  */
 public function testSetGetKeywords()
 {
     $string = array('linux', 'test', 'und', 'a' . 'münchen', '"test"');
     $this->target->setKeywords($string);
     $this->assertEquals($string, $this->target->getKeywords());
 }