con.response().body();
}
@Test(expected=IllegalArgumentException.class) public void throwsExceptionOnBodyAsBytesWithoutExecute() throws IOException {
Connection con = HttpConnection.connect("http://example.com");
con.response().bodyAsBytes();
}
@Test public void caseInsensitiveHeaders() {
Connection.Response res = new HttpConnection.Response();
Map<String, String> headers = res.headers();