Beispiel #1
0
 /**
  * @testdox Allows setting the status of a job posting
  * @covers Jobs\Entity\Job::getHistory
  * @covers Jobs\Entity\Job::setHistory
  * @dataProvider provideHistory
  */
 public function testSetHistory($input, $expected)
 {
     $this->target->setHistory($input);
     $this->assertEquals($this->target->getHistory(), $expected);
 }