Uses of Class
org.fest.assertions.api.IntegerAssert
Packages that use IntegerAssert
-
Uses of IntegerAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return IntegerAssertModifier and TypeMethodDescriptionstatic IntegerAssert
Assertions.assertThat
(int actual) Creates a new instance of
.IntegerAssert
static IntegerAssert
Assertions.assertThat
(Integer actual) Creates a new instance of
.IntegerAssert
IntegerAssert.isEqualTo
(int expected) Verifies that the actual value is equal to the given one.IntegerAssert.isGreaterThan
(int other) Verifies that the actual value is greater than the given one.IntegerAssert.isGreaterThanOrEqualTo
(int other) Verifies that the actual value is greater than or equal to the given one.IntegerAssert.isLessThan
(int other) Verifies that the actual value is less than the given one.IntegerAssert.isLessThanOrEqualTo
(int other) Verifies that the actual value is less than or equal to the given one.IntegerAssert.isNegative()
Verifies that the actual value is negative.IntegerAssert.isNotEqualTo
(int other) Verifies that the actual value is not equal to the given one.IntegerAssert.isNotNegative()
Verifies that the actual value is non negative (positive or equal zero).IntegerAssert.isNotPositive()
Verifies that the actual value is non positive (negative or equal zero).IntegerAssert.isNotZero()
Verifies that the actual value is not equal to zero.IntegerAssert.isPositive()
Verifies that the actual value is positive.IntegerAssert.isZero()
Verifies that the actual value is equal to zero.IntegerAssert.usingComparator
(Comparator<? super Integer> customComparator) IntegerAssert.usingDefaultComparator()