Exemplo n.º 1
0
 public function testBeforeSave()
 {
     $this->assertNull($this->status->getCreatedAt());
     $this->status->beforeSave();
     $currentDate = new \DateTime('now', new \DateTimeZone('UTC'));
     $this->assertEquals($currentDate->format('Y-m-d'), $this->status->getCreatedAt()->format('Y-m-d'));
 }