Example #1
0
 public function testSentAtGetterAndSetter()
 {
     $entity = new Email();
     $date = new \DateTime('now', new \DateTimeZone('UTC'));
     $entity->setSentAt($date);
     $this->assertEquals($date, $entity->getSentAt());
 }