}
@Test
public void creatingEmptyResponseHasEmptyStringContentWhenFetchingContentAsString() {
assertThat(new ClientDriverResponse().getContent(), is(""));
assertThat(new ClientDriverResponse((String) null, null).getContent(), is(""));
assertThat(new ClientDriverResponse("", null).getContent(), is(""));
assertThat(new ClientDriverResponse((InputStream) null, null).getContent(), is(""));
assertThat(new ClientDriverResponse(IOUtils.toInputStream(""), null).getContent(), is(""));
}