@Test
public void test()
{
InjectionAnnotationReader c = new InjectionAnnotationReader();
ActionWithResponse action = new ActionWithResponse();
c.readAnnotations(action.getClass());
Map<String, InjectionWrapper> inputs = c.getInjectionMap();
HttpServletResponse response = createMock(HttpServletResponse.class);
replay(response);
InjectionWrapper inputWrapper = inputs.get("response");
ActionContext injectionContext = new TestContextImpl(null, response, null, null, null);
inputWrapper.inject(action, injectionContext);
verify(response);
assert action.getResponse() != null;
assert action.getResponse() == response;
}