Ordered |
IntStreamSubject.containsAtLeast(int first,
int second,
int... rest) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
IterableSubject.containsAtLeast(java.lang.Object firstExpected,
java.lang.Object secondExpected,
java.lang.Object... restOfExpected) |
Checks that the actual iterable contains at least all of the expected elements or fails.
|
Ordered |
IterableSubject.UsingCorrespondence.containsAtLeast(E first,
E second,
E... rest) |
Checks that the subject contains elements that corresponds to all of the expected elements,
i.e.
|
Ordered |
LongStreamSubject.containsAtLeast(long first,
long second,
long... rest) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
MapSubject.containsAtLeast(java.lang.Object k0,
java.lang.Object v0,
java.lang.Object... rest) |
|
Ordered |
MapSubject.UsingCorrespondence.containsAtLeast(java.lang.Object k0,
E v0,
java.lang.Object... rest) |
Fails if the map does not contain at least the given set of keys mapping to values that
correspond to the given values.
|
Ordered |
MultimapSubject.containsAtLeast(java.lang.Object k0,
java.lang.Object v0,
java.lang.Object... rest) |
Fails if the multimap does not contain at least the given key/value pairs.
|
Ordered |
MultimapSubject.UsingCorrespondence.containsAtLeast(java.lang.Object k0,
E v0,
java.lang.Object... rest) |
Fails if the multimap does not contain at least the given key/value pairs.
|
Ordered |
PrimitiveDoubleArraySubject.DoubleArrayAsIterable.containsAtLeast(double[] expected) |
|
Ordered |
PrimitiveFloatArraySubject.FloatArrayAsIterable.containsAtLeast(float[] expected) |
|
Ordered |
StreamSubject.containsAtLeast(java.lang.Object first,
java.lang.Object second,
java.lang.Object... rest) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
IntStreamSubject.containsAtLeastElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
IterableSubject.containsAtLeastElementsIn(java.lang.Iterable<?> expectedIterable) |
Checks that the actual iterable contains at least all of the expected elements or fails.
|
Ordered |
IterableSubject.containsAtLeastElementsIn(java.lang.Object[] expected) |
Checks that the actual iterable contains at least all of the expected elements or fails.
|
Ordered |
IterableSubject.UsingCorrespondence.containsAtLeastElementsIn(E[] expected) |
Checks that the subject contains elements that corresponds to all of the expected elements,
i.e.
|
Ordered |
IterableSubject.UsingCorrespondence.containsAtLeastElementsIn(java.lang.Iterable<? extends E> expected) |
Checks that the subject contains elements that corresponds to all of the expected elements,
i.e.
|
Ordered |
LongStreamSubject.containsAtLeastElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
StreamSubject.containsAtLeastElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain all of the given elements.
|
Ordered |
MapSubject.containsAtLeastEntriesIn(java.util.Map<?,?> expectedMap) |
Fails if the map does not contain at least the given set of entries in the given map.
|
Ordered |
MapSubject.UsingCorrespondence.containsAtLeastEntriesIn(java.util.Map<?,? extends E> expectedMap) |
Fails if the map does not contain at least the keys in the given map, mapping to values that
correspond to the values of the given map.
|
Ordered |
MultimapSubject.containsAtLeastEntriesIn(com.google.common.collect.Multimap<?,?> expectedMultimap) |
Fails if the Multimap does not contain at least the entries in the argument Multimap .
|
Ordered |
MultimapSubject.UsingCorrespondence.containsAtLeastEntriesIn(com.google.common.collect.Multimap<?,? extends E> expectedMultimap) |
Fails if the map does not contain at least the keys in the given multimap, mapping to values
that correspond to the values of the given multimap.
|
Ordered |
IntStreamSubject.containsExactly(int... varargs) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
IterableSubject.containsExactly(java.lang.Object... varargs) |
Checks that a subject contains exactly the provided objects or fails.
|
Ordered |
IterableSubject.UsingCorrespondence.containsExactly(E... expected) |
Checks that subject contains exactly elements that correspond to the expected elements, i.e.
|
Ordered |
LongStreamSubject.containsExactly(long... varargs) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
MapSubject.containsExactly() |
Fails if the map is not empty.
|
Ordered |
MapSubject.containsExactly(java.lang.Object k0,
java.lang.Object v0,
java.lang.Object... rest) |
Fails if the map does not contain exactly the given set of key/value pairs.
|
Ordered |
MapSubject.UsingCorrespondence.containsExactly(java.lang.Object k0,
E v0,
java.lang.Object... rest) |
Fails if the map does not contain exactly the given set of keys mapping to values that
correspond to the given values.
|
Ordered |
MultimapSubject.containsExactly() |
Fails if the multimap is not empty.
|
Ordered |
MultimapSubject.containsExactly(java.lang.Object k0,
java.lang.Object v0,
java.lang.Object... rest) |
Fails if the multimap does not contain exactly the given set of key/value pairs.
|
Ordered |
MultimapSubject.UsingCorrespondence.containsExactly() |
Fails if the multimap is not empty.
|
Ordered |
MultimapSubject.UsingCorrespondence.containsExactly(java.lang.Object k0,
E v0,
java.lang.Object... rest) |
Fails if the multimap does not contain exactly the given set of key/value pairs.
|
Ordered |
PrimitiveDoubleArraySubject.DoubleArrayAsIterable.containsExactly(double[] expected) |
|
Ordered |
PrimitiveFloatArraySubject.FloatArrayAsIterable.containsExactly(float[] expected) |
|
Ordered |
StreamSubject.containsExactly(java.lang.Object... varargs) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
IntStreamSubject.containsExactlyElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
IterableSubject.containsExactlyElementsIn(java.lang.Iterable<?> expected) |
Checks that a subject contains exactly the provided objects or fails.
|
private Ordered |
IterableSubject.containsExactlyElementsIn(java.lang.Iterable<?> required,
boolean addElementsInWarning) |
|
Ordered |
IterableSubject.containsExactlyElementsIn(java.lang.Object[] expected) |
Checks that a subject contains exactly the provided objects or fails.
|
Ordered |
IterableSubject.UsingCorrespondence.containsExactlyElementsIn(E[] expected) |
Checks that subject contains exactly elements that correspond to the expected elements, i.e.
|
Ordered |
IterableSubject.UsingCorrespondence.containsExactlyElementsIn(java.lang.Iterable<? extends E> expected) |
Checks that subject contains exactly elements that correspond to the expected elements, i.e.
|
Ordered |
LongStreamSubject.containsExactlyElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
StreamSubject.containsExactlyElementsIn(java.lang.Iterable<?> expected) |
Fails if the subject does not contain exactly the given elements.
|
Ordered |
MapSubject.containsExactlyEntriesIn(java.util.Map<?,?> expectedMap) |
Fails if the map does not contain exactly the given set of entries in the given map.
|
Ordered |
MapSubject.UsingCorrespondence.containsExactlyEntriesIn(java.util.Map<?,? extends E> expectedMap) |
Fails if the map does not contain exactly the keys in the given map, mapping to values that
correspond to the values of the given map.
|
Ordered |
MultimapSubject.containsExactlyEntriesIn(com.google.common.collect.Multimap<?,?> expectedMultimap) |
Fails if the Multimap does not contain precisely the same entries as the argument
Multimap .
|
Ordered |
MultimapSubject.UsingCorrespondence.containsExactlyEntriesIn(com.google.common.collect.Multimap<?,? extends E> expectedMultimap) |
Fails if the map does not contain exactly the keys in the given multimap, mapping to values
that correspond to the values of the given multimap.
|
private Ordered |
IterableSubject.failAtLeast(java.util.Collection<?> expected,
java.util.Collection<?> missingRawObjects) |
|
private Ordered |
IterableSubject.failExactly(java.lang.Iterable<?> required,
boolean addElementsInWarning,
java.util.Collection<?> missingRawObjects,
java.util.Collection<?> extraRawObjects) |
|
private <K,V extends E> Ordered |
MultimapSubject.UsingCorrespondence.internalContainsAtLeastEntriesIn(com.google.common.collect.Multimap<K,V> expectedMultimap) |
|
private <K,V extends E> Ordered |
MapSubject.UsingCorrespondence.internalContainsEntriesIn(java.lang.String modifier,
java.util.Map<K,V> expectedMap,
boolean allowUnexpected) |
|
private <K,V extends E> Ordered |
MultimapSubject.UsingCorrespondence.internalContainsExactlyEntriesIn(com.google.common.collect.Multimap<K,V> expectedMultimap) |
|