}
public void testInvalidConstructor() {
SessionInputBuffer inbuf = new SessionInputBuffer(1024, 128);
try {
new HttpRequestParser(null, null);
fail("IllegalArgumentException should have been thrown");
} catch (IllegalArgumentException ex) {
// ignore
}
try {
new HttpRequestParser(inbuf, null);
fail("IllegalArgumentException should have been thrown");
} catch (IllegalArgumentException ex) {
// ignore
}
try {