Uses of Class
org.assertj.guava.api.RangeAssert
Packages that use RangeAssert
-
Uses of RangeAssert in org.assertj.guava.api
Methods in org.assertj.guava.api that return RangeAssertModifier and TypeMethodDescriptionstatic <T extends Comparable<T>>
RangeAssert<T>Assertions.assertThat(Range<T> actual) Verifies that the actualRangecontains the given values.RangeAssert.doesNotContain(T... values) Verifies that the actualRangedoes not contain the given values.RangeAssert.hasClosedLowerBound()Verifies that the actualRangelower bound is closed.RangeAssert.hasClosedUpperBound()Verifies that the actualRangeupper bound is closed.RangeAssert.hasLowerEndpointEqualTo(T value) Verifies that the actualRangelower endpoint is equal to the given value.RangeAssert.hasOpenedLowerBound()Verifies that the actualRangelower bound is opened.RangeAssert.hasOpenedUpperBound()Verifies that the actualRangeupper bound is opened.RangeAssert.hasUpperEndpointEqualTo(T value) Verifies that the actualRangeupper endpoint is equal to the given value.RangeAssert.isEmpty()Verifies that the actualRangeis empty.RangeAssert.isNotEmpty()Verifies that the actualRangeis not empty.Methods in org.assertj.guava.api that return types with arguments of type RangeAssertModifier and TypeMethodDescriptionstatic <C extends Comparable<C>>
InstanceOfAssertFactory<Range,RangeAssert<C>> InstanceOfAssertFactoryfor aRange.