/**
  * @covers Eye4web\ZfcUser\Pm\View\Helper\ZfcUserPmHelper::getUser
  */
 public function testGetUser()
 {
     $id = 1;
     $this->userMapperInterface->expects($this->once())->method('findById')->with($id);
     $this->helper->getUser($id);
 }