Uses of Interface
org.assertj.core.util.TriFunction
-
Packages that use TriFunction Package Description org.assertj.core.internal -
-
Uses of TriFunction in org.assertj.core.internal
Methods in org.assertj.core.internal with parameters of type TriFunction Modifier and Type Method Description private <T> void
Comparables. assertGreaterThan(AssertionInfo info, java.lang.Comparable<? super T> actual, T other, TriFunction<java.lang.Comparable<? super T>,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory)
Asserts that the actual value is greater than the other one.private <T> void
Comparables. assertGreaterThanOrEqualTo(AssertionInfo info, java.lang.Comparable<? super T> actual, T other, TriFunction<java.lang.Comparable<? super T>,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory)
Asserts that the actual value is greater than or equal to the other one.private <T> void
Comparables. assertLessThan(AssertionInfo info, java.lang.Comparable<? super T> actual, T other, TriFunction<java.lang.Comparable<? super 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> void
Comparables. assertLessThanOrEqualTo(AssertionInfo info, java.lang.Comparable<? super T> actual, T other, TriFunction<java.lang.Comparable<? super T>,T,ComparisonStrategy,ErrorMessageFactory> errorMessageFactory)
Asserts that the actual value is less than or equal to the other one.
-