public void testMatchWithRequestBodyPattern() throws IOException {
content = "ooooh".getBytes();
contentType = "text/junk";
RealRequest real = mockRealRequest("aaaaa", Method.GET, headers, params, content, contentType);
ClientDriverRequest expected = new ClientDriverRequest("aaaaa").withMethod(Method.GET).withBody(Pattern.compile("[o]{4}h"), Pattern.compile("text/j[a-z]{3}"));
assertThat(sut.isMatch(real, expected), is(true));
}