Exemplo n.º 1
0
 public function testCreatedAt()
 {
     $this->assertNull($this->status->getCreatedAt());
     $this->status->setCreatedAt(new \DateTime('2013-01-01'));
     $this->assertEquals('2013-01-01', $this->status->getCreatedAt()->format('Y-m-d'));
 }