5051525354555657585960
private String getBody() throws IOException { ByteSource body = resp.getBody(); byte[] ab = new byte[body.remaining()]; assertEquals(body.remaining(), body.get(ab, 0, ab.length)); return new String(ab); }
5253545556575859606162
throws IOException { ByteSource body = resp.getBody(); byte[] ab = new byte[body.remaining()]; assertEquals(body.remaining(), body.get(ab, 0, ab.length)); return new String(ab); } public void testBasic()