@SpecAssertions({ @SpecAssertion(section = "5.5", id = "eb"), @SpecAssertion(section = "5.5.2", id = "am"),
@SpecAssertion(section = "5.5.2", id = "an"), @SpecAssertion(section = "3.9", id = "b") })
public void testInjectionIntoTagHandler() throws Exception {
WebClient webClient = new WebClient();
webClient.setThrowExceptionOnFailingStatusCode(false);
WebResponse response = webClient.getPage(contextPath + "TagPage.jsp").getWebResponse();
assert response.getStatusCode() == 200;
assert response.getContentAsString().contains(TestTagHandler.INJECTION_SUCCESS);
assert response.getContentAsString().contains(TestTagHandler.INITIALIZER_SUCCESS);
}