예제 #1
0
 public function testSetDeletedAt()
 {
     $company = new Company();
     $dateTime = new \DateTime();
     $company->setDeletedAt($dateTime);
     $this->assertEquals($dateTime, $company->getDeletedAt());
 }