Ejemplo n.º 1
0
 public function testGetCreatedAtAndUpdatedAt()
 {
     $obj = new Object("TestObject");
     $obj->set("foo", "bar");
     $obj->save();
     $this->assertNotEmpty($obj->getCreatedAt());
     $this->assertTrue($obj->getCreatedAt() instanceof \DateTime);
     $obj->set("foo", "baz");
     $obj->save();
     $this->assertNotEmpty($obj->getUpdatedAt());
     $this->assertTrue($obj->getUpdatedAt() instanceof \DateTime);
     $obj->destroy();
 }