Uses of Class
org.assertj.guava.api.MultisetAssert
-
Packages that use MultisetAssert Package Description org.assertj.guava.api -
-
Uses of MultisetAssert in org.assertj.guava.api
Fields in org.assertj.guava.api with type parameters of type MultisetAssert Modifier and Type Field Description static InstanceOfAssertFactory<com.google.common.collect.Multiset,MultisetAssert<java.lang.Object>>
InstanceOfAssertFactories. MULTISET
Methods in org.assertj.guava.api that return MultisetAssert Modifier and Type Method Description static <T> MultisetAssert<T>
Assertions. assertThat(com.google.common.collect.Multiset<T> actual)
MultisetAssert<T>
MultisetAssert. contains(int expectedCount, T expected)
Verifies the actualMultiset
contains the given value exactly the given number of times.MultisetAssert<T>
MultisetAssert. containsAtLeast(int minimumCount, T expected)
Verifies the actualMultiset
contains the given value at least the given number of times.MultisetAssert<T>
MultisetAssert. containsAtMost(int maximumCount, T expected)
Verifies the actualMultiset
contains the given value at most the given number of times.protected MultisetAssert<T>
MultisetAssert. newAbstractIterableAssert(java.lang.Iterable<? extends T> iterable)
Methods in org.assertj.guava.api that return types with arguments of type MultisetAssert Modifier and Type Method Description static <ELEMENT> InstanceOfAssertFactory<com.google.common.collect.Multiset,MultisetAssert<ELEMENT>>
InstanceOfAssertFactories. multiset(java.lang.Class<ELEMENT> elementType)
InstanceOfAssertFactory
for aMultiset
.
-