@Test
public void testSuccessfulMatchWithMultipleIdenticalParamsInDifferentOrder() {
params = asMap("key", asStringList("that", "this"));
RealRequest real = mockRealRequest("aaaaa", Method.GET, headers, params, content, contentType);
ClientDriverRequest expected = new ClientDriverRequest("aaaaa").withMethod(Method.GET).withParam("key", "this").withParam("key", "that");
assertThat(sut.isMatch(real, expected), is(true));
}