|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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
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
thrown when an assertion fails. |
static MapAssert |
Assertions.assertThat(Map<?,?> actual)
Creates a new instance of . |
MapAssert |
MapAssert.describedAs(Description description)
Alias for , since "as" is a keyword in
Groovy. |
MapAssert |
MapAssert.describedAs(String description)
Alias for , since "as" is a keyword in
Groovy. |
MapAssert |
MapAssert.doesNotSatisfy(Condition<Map<?,?>> condition)
Verifies that the actual does not satisfy the given condition. |
MapAssert |
MapAssert.excludes(MapAssert.Entry... entries)
Verifies that the actual does not contain the given entries. |
MapAssert |
MapAssert.hasSize(int expected)
Verifies that the number of elements in the actual is equal to the given one. |
MapAssert |
MapAssert.includes(MapAssert.Entry... entries)
Verifies that the actual contains the given entries. |
MapAssert |
MapAssert.is(Condition<Map<?,?>> condition)
Alias for . |
MapAssert |
MapAssert.isEqualTo(Map<?,?> expected)
Verifies that the actual is equal to the given one. |
MapAssert |
MapAssert.isNot(Condition<Map<?,?>> condition)
Alias for . |
MapAssert |
MapAssert.isNotEmpty()
Verifies that the actual contains at least on element. |
MapAssert |
MapAssert.isNotEqualTo(Map<?,?> other)
Verifies that the actual is not equal to the given one. |
MapAssert |
MapAssert.isNotNull()
Verifies that the actual is not null . |
MapAssert |
MapAssert.isNotSameAs(Map<?,?> other)
Verifies that the actual is not the same as the given one. |
MapAssert |
MapAssert.isSameAs(Map<?,?> expected)
Verifies that the actual 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 satisfies the given condition. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |