private ReminderController controller;
@Before
public void setUp() throws Exception {
UserService userService = createNiceMock(UserService.class);
replay(userService);
request = new MockHttpServletRequest();
NewPasswordValidator passwordValidator = new NewPasswordValidator(userService);
captchaService = new ReCaptchaService(false, null, null, false, "error message");
controller = new ReminderController(userService, passwordValidator, captchaService);