ServletContext servletContext = mock(ServletContext.class);
when(servletRequest.getSession()).thenReturn(httpSession);
when(httpSession.getServletContext()).thenReturn(servletContext);
MadvocController madvocController = new MadvocController();
Object action = new Object();
ActionConfig actionConfig = new ActionConfig(
Action.class,
ReflectUtil.findMethod(Action.class, "view"),