public void doesNotMatchIncorrectRegexKeyAndValue() {
// given
multimap.put("g.*1", "a.*1");
// when
keyToMultiValues.add(new KeyToMultiValue("foo0", "bar0"));
keyToMultiValues.add(new KeyToMultiValue("foo1", "bar1"));
keyToMultiValues.add(new KeyToMultiValue("foo2", "bar2"));
// then
assertFalse(mapMatcher.matches(keyToMultiValues));
}