expect(action.getBeforeInterceptors()).andReturn(actionBefores);
actionBefore1.beforeExecute(actionBean, actionContext);
actionBefore2.beforeExecute(actionBean, actionContext);
expect(action.executeController(actionBean, actionContext)).andReturn(
new ActionForwardViewAdapter(actionForward));
expect(action.getAfterInterceptors()).andReturn(actionAfters);
actionAfter1.afterExecute(actionBean, actionContext, null);
actionAfter2.afterExecute(actionBean, actionContext, null);