Uses of Class
org.fest.assertions.data.MapEntry
-
Packages that use MapEntry Package Description org.fest.assertions.api org.fest.assertions.data org.fest.assertions.internal -
-
Uses of MapEntry in org.fest.assertions.api
Methods in org.fest.assertions.api that return MapEntry Modifier and Type Method Description static MapEntry
Assertions. entry(java.lang.Object key, java.lang.Object value)
Only delegate toentry(Object, Object)
so that Assertions offers a full feature entry point to all Fest Assert features (but you can useMapEntry
if you prefer).Methods in org.fest.assertions.api with parameters of type MapEntry Modifier and Type Method Description MapAssert<K,V>
MapAssert. contains(MapEntry... entries)
Verifies that the actual map contains the given entries, in any order.MapAssert<K,V>
MapAssert. doesNotContain(MapEntry... entries)
Verifies that the actual map does not contain the given entries.Method parameters in org.fest.assertions.api with type arguments of type MapEntry Modifier and Type Method Description MapAssert<K,V>
MapAssert. usingElementComparator(java.util.Comparator<? super MapEntry> customComparator)
Use given custom comparator instead of relying on actual type Aequals
method to compare group elements for incoming assertion checks. -
Uses of MapEntry in org.fest.assertions.data
Methods in org.fest.assertions.data that return MapEntry Modifier and Type Method Description static MapEntry
MapEntry. entry(java.lang.Object key, java.lang.Object value)
Creates a newMapEntry
. -
Uses of MapEntry in org.fest.assertions.internal
Methods in org.fest.assertions.internal with parameters of type MapEntry Modifier and Type Method Description void
Maps. assertContains(AssertionInfo info, java.util.Map<?,?> actual, MapEntry[] entries)
Asserts that the givenMap
contains the given entries, in any order.void
Maps. assertDoesNotContain(AssertionInfo info, java.util.Map<?,?> actual, MapEntry[] entries)
Asserts that the givenMap
does not contain the given entries.
-