httpRequest.setParameter(ajaxInterceptor.getEventParameter(), "action");
ajaxInterceptor.preHandle(httpRequest, httpResponse, controller);
String response1 = httpResponse.getContentAsString();
String response2 = new DummyHandler().action(new AjaxActionEventImpl("action", httpRequest)).render();
assertEquals(response1, response2);
}