private <T extends java.lang.Comparable<? super T>> void |
Comparables.assertGreaterThan(AssertionInfo info,
T actual,
T other,
TriFunction<T,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory) |
Asserts that the actual value is greater than the other one.
|
private <T extends java.lang.Comparable<? super T>> void |
Comparables.assertGreaterThanOrEqualTo(AssertionInfo info,
T actual,
T other,
TriFunction<T,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory) |
Asserts that the actual value is greater than or equal to the other one.
|
private <T extends java.lang.Comparable<? super T>> void |
Comparables.assertLessThan(AssertionInfo info,
T actual,
T other,
TriFunction<T,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory) |
Asserts that the actual value is less than the other one and throws an error with the given message factory.
|
private <T extends java.lang.Comparable<? super T>> void |
Comparables.assertLessThanOrEqualTo(AssertionInfo info,
T actual,
T other,
TriFunction<T,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory) |
Asserts that the actual value is less than or equal to the other one.
|