Ejemplo n.º 1
0
 /**
  * @covers Core\Entity\IndependentWork::DueDate
  * @covers Core\Entity\IndependentWork::DueDate
  */
 public function testSetGetDueDate()
 {
     $dt = new DateTime();
     $this->independentwork->setDueDate($dt);
     $this->assertEquals($dt, $this->independentwork->getDueDate());
 }