+"Content-Length: 1\r\n";
String body = "0a\r\n1234567890\r\n3\r\n123\r\n0\r\n";
conn.addResponse(headers, body);
conn.open();
HttpMethodBase method = new GetMethod("/");
method.execute(new HttpState(), conn);
String responseBody = method.getResponseBodyAsString();
// verify that the connection was closed.
conn.assertNotOpen();
assertEquals("1234567890123", responseBody);
}