assertFalse(underTest.needsCaptcha(user));
}
@Test
public void needsCaptchaReceivesFalseAndReturnsFalse() {
response = new UtilResponse("false", false, 200);
when(user.getCookie()).thenReturn("cookie");
when(restClient.get(ApiEndpointUtils.CAPTCHA_NEEDS, "cookie")).thenReturn(response);
assertFalse(underTest.needsCaptcha(user));