@@ -969,7 +969,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
969
969
* @param valueMatcher the value matcher that, in combination with the keyMatcher, must be satisfied by at least one entry
970
970
*/
971
971
public static <K , V > Matcher <java .util .Map <? extends K , ? extends V >> hasEntry (org .hamcrest .Matcher <? super K > keyMatcher , org .hamcrest .Matcher <? super V > valueMatcher ) {
972
- return org . hamcrest . collection . IsMapContaining .hasEntry (keyMatcher , valueMatcher );
972
+ return MatchingMaps .hasEntry (keyMatcher , valueMatcher );
973
973
}
974
974
975
975
/**
@@ -983,7 +983,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
983
983
* @param value the value that, in combination with the key, must be describe at least one entry
984
984
*/
985
985
public static <K , V > Matcher <java .util .Map <? extends K , ? extends V >> hasEntry (K key , V value ) {
986
- return org . hamcrest . collection . IsMapContaining .hasEntry (key , value );
986
+ return MatchingMaps .hasEntry (key , value );
987
987
}
988
988
989
989
/**
@@ -995,7 +995,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
995
995
* @param keyMatcher the matcher that must be satisfied by at least one key
996
996
*/
997
997
public static <K > org .hamcrest .Matcher <java .util .Map <? extends K , ?>> hasKey (org .hamcrest .Matcher <? super K > keyMatcher ) {
998
- return org . hamcrest . collection . IsMapContaining .hasKey (keyMatcher );
998
+ return MatchingMaps .hasKey (keyMatcher );
999
999
}
1000
1000
1001
1001
/**
@@ -1007,7 +1007,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
1007
1007
* @param key the key that satisfying maps must contain
1008
1008
*/
1009
1009
public static <K > org .hamcrest .Matcher <java .util .Map <? extends K , ?>> hasKey (K key ) {
1010
- return org . hamcrest . collection . IsMapContaining .hasKey (key );
1010
+ return MatchingMaps .hasKey (key );
1011
1011
}
1012
1012
1013
1013
/**
@@ -1019,7 +1019,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
1019
1019
* @param valueMatcher the matcher that must be satisfied by at least one value
1020
1020
*/
1021
1021
public static <V > org .hamcrest .Matcher <java .util .Map <?, ? extends V >> hasValue (org .hamcrest .Matcher <? super V > valueMatcher ) {
1022
- return org . hamcrest . collection . IsMapContaining .hasValue (valueMatcher );
1022
+ return MatchingMaps .hasValue (valueMatcher );
1023
1023
}
1024
1024
1025
1025
/**
@@ -1031,7 +1031,7 @@ public static <E> org.hamcrest.Matcher<java.lang.Iterable<E>> iterableWithSize(i
1031
1031
* @param value the value that satisfying maps must contain
1032
1032
*/
1033
1033
public static <V > org .hamcrest .Matcher <java .util .Map <?, ? extends V >> hasValue (V value ) {
1034
- return org . hamcrest . collection . IsMapContaining .hasValue (value );
1034
+ return MatchingMaps .hasValue (value );
1035
1035
}
1036
1036
1037
1037
/**
0 commit comments