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