@Test
public void testToStringWithResponseBody() {
driver.addExpectation(new ClientDriverRequest("/"), new ClientDriverResponse("This is the content", "text/plain"));
Response response = get(baseUrl);
assertThat(response.toString(), containsString("HTTP/1.1 200 OK"));
assertThat(response.toString(), containsString("Content-Type: text/plain"));
assertThat(response.toString(), containsString("Content-Length: 19"));
assertThat(response.toString(), containsString("Server: rest-client-driver("));
assertThat(response.toString(), containsString(n + "This is the content"));
}