public function testUpdatedAt() { $this->assertNull($this->comment->getUpdatedAt()); $value = new \DateTime(); $this->assertEquals($this->comment, $this->comment->setUpdatedAt($value)); $this->assertEquals($value, $this->comment->getUpdatedAt()); }