}
@Test
public void testJettyWorkingWithMethodButIncorrectParamsPattern() throws Exception {
clientDriver = new ClientDriverFactory().createClientDriver();
clientDriver.addExpectation(onRequestTo(Pattern.compile("/b[a-z]{3}")).withMethod(Method.POST).withParam(
"gang", Pattern.compile("r")), giveResponse("OUCH!!", "text/plain").withStatus(200).withHeader("Server", "TestServer"));
HttpClient client = new DefaultHttpClient();