use of org.apache.commons.httpclient.methods.HeadMethod in project sling by apache.
the class HeadServletTest method pngHead.
@Test
public void pngHead() throws IOException {
final HeadMethod head = new HeadMethod(PNG_URL);
final int status = H.getHttpClient().executeMethod(head);
assertEquals(200, status);
assertNull("Expecting null body", head.getResponseBody());
assertCommonHeaders(head, "image/png");
}
Aggregations