assertThat((StaticContentFetcherService) modelMap.get(ModelKeys.STATIC_CONTENT_CACHE), sameInstance(staticContentFetcherService));
}
@Test
public void testPostHandle_noModelAndView() throws Exception {
MockHttpServletRequest request = new MockHttpServletRequest();
MockHttpServletResponse response = new MockHttpServletResponse();
Object handler = null;
ModelAndView modelAndView = null;
interceptor.postHandle(request, response, handler, modelAndView);
assertThat(modelAndView, is(nullValue(ModelAndView.class)));