Esempio n. 1
0
 public function testSetDeletedAt()
 {
     $employee = new Employee();
     $dateTime = new \DateTime();
     $employee->setDeletedAt($dateTime);
     $this->assertEquals($dateTime, $employee->getDeletedAt());
 }