コード例 #1
0
ファイル: EmailTest.php プロジェクト: xamin123/platform
 public function testInternalDateGetterAndSetter()
 {
     $entity = new Email();
     $date = new \DateTime('now', new \DateTimeZone('UTC'));
     $entity->setInternalDate($date);
     $this->assertEquals($date, $entity->getInternalDate());
 }