public function testUpdated() { $dateCreated = new \DateTime(); $dateCreated = $dateCreated->format('yy'); $this->assertNull($this->unit->getUpdatedAt()); $this->unit->preUpdate(); $this->assertEquals($dateCreated, $this->unit->getUpdatedAt()->format('yy')); }