Is there a way to unit test Spring services using interceptors? Currently I have implemented an interceptor to do some setup/initialization work that is common for each web service call. When I unit test, this logic/behavior is unavailable. The example apps show how to test the endpoint by itself. Is there a way to unit test both interceptors and endpoints together?