Example #1
0
 public function testPreUpdate()
 {
     $obj = new CalendarEvent();
     $this->assertNull($obj->getUpdatedAt());
     $obj->preUpdate();
     $this->assertInstanceOf('\\DateTime', $obj->getUpdatedAt());
 }