public function testGetUpdated()
 {
     $this->stateMock->expects($this->once())
         ->method('getUpdated')
         ->will($this->returnValue('some datetime'));
     $this->assertEquals('some datetime', $this->model->getUpdated());
 }