Exemplo n.º 1
0
 public function testBeforeSave()
 {
     $obj = new SalesFunnel();
     $this->assertNull($obj->getCreatedAt());
     $this->assertNull($obj->getUpdatedAt());
     $obj->beforeSave();
     $this->assertInstanceOf('\\DateTime', $obj->getCreatedAt());
     $this->assertNull($obj->getUpdatedAt());
 }