Uses of Class
cloud.opencode.base.test.assertion.NumberAssert
Packages that use NumberAssert
-
Uses of NumberAssert in cloud.opencode.base.test.assertion
Methods in cloud.opencode.base.test.assertion that return NumberAssertModifier and TypeMethodDescriptionstatic NumberAssert<Double> NumberAssert.assertThat(double actual) Creates assertion for double.static NumberAssert<Integer> NumberAssert.assertThat(int actual) Creates assertion for int.static NumberAssert<Long> NumberAssert.assertThat(long actual) Creates assertion for long.static <T extends Number & Comparable<T>>
NumberAssert<T> NumberAssert.assertThat(T actual) Creates assertion for number.Asserts that number is between (inclusive).Asserts that number is close to with offset.Asserts that number equals another.NumberAssert.isEven()Asserts that number is even.NumberAssert.isGreaterThan(T other) Asserts that number is greater than.NumberAssert.isGreaterThanOrEqualTo(T other) Asserts that number is greater than or equal to.NumberAssert.isLessThan(T other) Asserts that number is less than.NumberAssert.isLessThanOrEqualTo(T other) Asserts that number is less than or equal to.NumberAssert.isNegative()Asserts that number is negative.NumberAssert.isNotNegative()Asserts that number is not negative.NumberAssert.isNotNull()Asserts that number is not null.NumberAssert.isNotPositive()Asserts that number is not positive.NumberAssert.isNotZero()Asserts that number is not zero.NumberAssert.isNull()Asserts that number is null.NumberAssert.isOdd()Asserts that number is odd.NumberAssert.isPositive()Asserts that number is positive.NumberAssert.isStrictlyBetween(T start, T end) Asserts that number is strictly between (exclusive).NumberAssert.isZero()Asserts that number is zero.