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