Uses of Class
org.fest.assertions.data.MapEntry

Packages that use MapEntry
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
static MapEntry Assertions.entry(Object key, Object value)
          Only delegate to entry(Object, Object) so that Assertions offers a full feature entry point to all Fest Assert features (but you can use MapEntry if you prefer).
 

Methods in org.fest.assertions.api with parameters of type MapEntry
 MapAssert MapAssert.contains(MapEntry... entries)
          Verifies that the actual map contains the given entries, in any order.
 MapAssert MapAssert.doesNotContain(MapEntry... entries)
          Verifies that the actual map does not contain the given entries.
 

Uses of MapEntry in org.fest.assertions.data
 

Methods in org.fest.assertions.data that return MapEntry
static MapEntry MapEntry.entry(Object key, Object value)
          Creates a new map entry.
 

Uses of MapEntry in org.fest.assertions.internal
 

Methods in org.fest.assertions.internal with parameters of type MapEntry
 void Maps.assertContains(AssertionInfo info, Map<?,?> actual, MapEntry[] entries)
          Asserts that the given Map contains the given entries, in any order.
 void Maps.assertDoesNotContain(AssertionInfo info, Map<?,?> actual, MapEntry[] entries)
          Asserts that the given Map does not contain the given entries.
 



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