c.readAnnotations(action.getClass());
Map<String, InjectionWrapper> inputs = c.getInjectionMap();
InjectionWrapper inputWrapper = inputs.get("webHelper");
ActionContext injectionContext = new TestContextImpl(request, null, context, null, null);
inputWrapper.inject(action, injectionContext);
assert action.getWebHelper() != null;