public class MapSubject extends Subject<MapSubject,Map<?,?>>
Map
subjects.failureStrategy
Modifier and Type | Method and Description |
---|---|
void |
containsEntry(Object key,
Object value)
Fails if the map does not contain the given entry.
|
Ordered |
containsExactly()
Fails if the map is not empty.
|
Ordered |
containsExactly(Object k0,
Object v0,
Object... rest)
Fails if the map does not contain exactly the given set of key/value pairs.
|
Ordered |
containsExactlyEntriesIn(Map<?,?> expectedMap)
Fails if the map does not contain exactly the given set of entries in the given map.
|
void |
containsKey(Object key)
Fails if the map does not contain the given key.
|
void |
doesNotContainEntry(Object key,
Object value)
Fails if the map contains the given entry.
|
void |
doesNotContainKey(Object key)
Fails if the map contains the given key.
|
void |
hasSize(int expectedSize)
Fails if the map does not have the given size.
|
void |
isEmpty()
Fails if the map is not empty.
|
void |
isEqualTo(Object other)
Fails if the subject is not equal to the given object.
|
void |
isNotEmpty()
Fails if the map is empty.
|
check, equals, fail, fail, fail, failWithBadResults, failWithCustomSubject, failWithoutSubject, failWithRawMessage, getDisplaySubject, getSubject, hashCode, internalCustomName, isAnyOf, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameAs, isNull, isSameAs, named
public void isEqualTo(@Nullable Object other)
isEqualTo
in class Subject<MapSubject,Map<?,?>>
public void isEmpty()
public void isNotEmpty()
public void hasSize(int expectedSize)
public void containsKey(@Nullable Object key)
public void doesNotContainKey(@Nullable Object key)
public void containsEntry(@Nullable Object key, @Nullable Object value)
public void doesNotContainEntry(@Nullable Object key, @Nullable Object value)
public Ordered containsExactly()
public Ordered containsExactly(@Nullable Object k0, @Nullable Object v0, Object... rest)
Warning: the use of varargs means that we cannot guarantee an equal number of key/value pairs at compile time. Please make sure you provide varargs in key/value pairs!
Copyright © 2015. All Rights Reserved.