コード例 #1
0
ファイル: EmployeeTest.php プロジェクト: fedegiust/Jumph
 public function testSetDeletedAt()
 {
     $employee = new Employee();
     $dateTime = new \DateTime();
     $employee->setDeletedAt($dateTime);
     $this->assertEquals($dateTime, $employee->getDeletedAt());
 }