Uses of Class
org.fest.assertions.api.MapAssert

Packages that use MapAssert
org.fest.assertions.api   
 

Uses of MapAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return MapAssert
static
<K,V> MapAssert<K,V>
Assertions.assertThat(Map<K,V> actual)
          Creates a new instance of MapAssert.
 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.
 MapAssert<K,V> MapAssert.hasSize(int expected)
          Verifies that the number of values in the actual group is equal to the given one.
 MapAssert<K,V> MapAssert.isNotEmpty()
          Verifies that the actual group of values is not empty.
 MapAssert<K,V> MapAssert.usingDefaultElementComparator()
          Revert to standard comparison for incoming assertion group element checks.
 MapAssert<K,V> MapAssert.usingElementComparator(Comparator<? super MapEntry> customComparator)
          Use given custom comparator instead of relying on actual type A equals method to compare group elements for incoming assertion checks.
 



Copyright © 2007-2012 FEST (Fixtures for Easy Software Testing). All Rights Reserved.