Uses of Class
org.fest.assertions.MapAssert

Uses of MapAssert in org.fest.assertions
 

Methods in org.fest.assertions that return MapAssert
 MapAssert MapAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 MapAssert MapAssert.as(String description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
static MapAssert Assertions.assertThat(Map<?,?> actual)
          Creates a new instance of MapAssert.
 MapAssert MapAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 MapAssert MapAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 MapAssert MapAssert.doesNotSatisfy(Condition<Map<?,?>> condition)
          Verifies that the actual Map does not satisfy the given condition.
 MapAssert MapAssert.excludes(MapAssert.Entry... entries)
          Verifies that the actual Map does not contain the given entries.
 MapAssert MapAssert.hasSize(int expected)
          Verifies that the number of elements in the actual Map is equal to the given one.
 MapAssert MapAssert.includes(MapAssert.Entry... entries)
          Verifies that the actual Map contains the given entries.
 MapAssert MapAssert.is(Condition<Map<?,?>> condition)
          Alias for satisfies(Condition).
 MapAssert MapAssert.isEqualTo(Map<?,?> expected)
          Verifies that the actual Map is equal to the given one.
 MapAssert MapAssert.isNot(Condition<Map<?,?>> condition)
          Alias for doesNotSatisfy(Condition).
 MapAssert MapAssert.isNotEmpty()
          Verifies that the actual Map contains at least on element.
 MapAssert MapAssert.isNotEqualTo(Map<?,?> other)
          Verifies that the actual Map is not equal to the given one.
 MapAssert MapAssert.isNotNull()
          Verifies that the actual Map is not null.
 MapAssert MapAssert.isNotSameAs(Map<?,?> other)
          Verifies that the actual Map is not the same as the given one.
 MapAssert MapAssert.isSameAs(Map<?,?> expected)
          Verifies that the actual Map is the same as the given one.
 MapAssert MapAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 MapAssert MapAssert.satisfies(Condition<Map<?,?>> condition)
          Verifies that the actual Map satisfies the given condition.
 



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