public TestingResponse(HttpStatus status, ListMultimap<String, String> headers, InputStream input)
{
this.status = checkNotNull(status, "status is null");
this.headers = ImmutableListMultimap.copyOf(checkNotNull(headers, "headers is null"));
this.countingInputStream = new CountingInputStream(checkNotNull(input, "input is null"));
}