}
@Test
@SuppressWarnings("deprecation")
public void shouldDistinguishByRegexpMatchInBody() {
Condition condition = Condition.withPostBodyContaining(new Regexp("[0-9]+"));
when(call.getPostBody()).thenReturn("331102");
assertTrue(condition.check(call));
condition = Condition.withPostBodyContaining(new Regexp("[a-z]+"));
assertFalse(condition.check(call));
}