public function testRemoveUser()
 {
     $user = new User();
     $this->useCaseMock->expects($this->once())->method('removeUser')->with($user);
     $this->controller->removeUserAction($user);
 }