log.info("--shouldVerifyWithFailure");
//given
PayPalStatusVerifier mockStatusVerifier = new MockStatusVerifier();
PayPalVerificationService verificationService = new PayPalVerificationService("dummyAddress",
new PayPalProcessorsFactory(MockVerifiedPayPalProcessor.class),
new TestErrorHandler(),
mockStatusVerifier);
HashMap<String, String[]> parametersMap = new HashMap<String, String[]>();
parametersMap.put(RequestParameters.Parameter.payment_status.toString(), new String[]{"INVALID"});
//when
PayPalStatus status = verificationService.verify(new RequestParameters(new RequestMock(parametersMap)));