mvc.perform(get(ExampleController.PATH)).andExpect(content().string(UncheckedExceptionHandler.RESPONSE));
}
@Test
public void checkedExceptionHandled() throws Throwable {
Mockito.when(mockService.get()).thenThrow(new CheckedException());
mvc.perform(get(ExampleController.PATH)).andExpect(content().string(CheckedExceptionHandler.RESPONSE));
}