String actionType = StrutsTestAction.class.getName();
mapping = new ActionMapping();
mapping.setPath("/myPath1");
mapping.setType(actionType);
service = new TestService();
container = new DefaultPicoContainer();
container.registerComponentInstance(TestService.class, service);
requestMock.stubs().method("getAttribute").with(eq(KeyConstants.ACTIONS_CONTAINER)).will(returnValue(container));
}