public void shouldBeOkIfThereIsValidationErrorsAndYouSpecifiedWhereToGo() throws Exception {
Method specifiedWhereToGo = AnyController.class.getMethod("specifiedWhereToGo");
ControllerMethod method = DefaultControllerMethod.instanceFor(AnyController.class, specifiedWhereToGo);
AnyController controller = new AnyController(validator);
when(methodInfo.getParametersValues()).thenReturn(new Object[0]);
doThrow(new ValidationException(Collections.<Message> emptyList())).when(validator).onErrorUse(nothing());
observer.execute(new InterceptorsExecuted(method, controller));
}