Rest Assured + Mock MVC @ControllerAdvice
In my project I am using Rest Assured MockMVC with the following dependency: <dependency> <groupId>com.jayway.restassured</groupId> <artifactId>spring-mock-mvc</artifactId> <version>2.9.0</version> </dependency> And my test class looks like: TestController testController = new TestController(); @Before public void configureRestAssuredForController() { RestAssuredMockMvc.standaloneSetup(testController); } I have a couple of ExceptionHandlers defined in the controller class. In my JUnit tests I could verify the request paths and the handlers when defined in the controller class. However - When I