verify(interceptorStack, never()).start();
}
@Test
public void shouldHandle400() throws Exception {
InvalidInputException invalidInputException = new InvalidInputException("");
when(translator.translate(webRequest)).thenThrow(invalidInputException);
observer.handle(requestStarted);
verify(interceptorStack, never()).start();
verify(invalidInputHandler).deny(invalidInputException);
}