Uses of Interface
org.assertj.core.util.TriFunction
Packages that use TriFunction
-
Uses of TriFunction in org.assertj.core.internal
Methods in org.assertj.core.internal with parameters of type TriFunctionModifier and TypeMethodDescriptionprivate <T extends Comparable<? super T>>
voidComparables.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 Comparable<? super T>>
voidComparables.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 Comparable<? super T>>
voidComparables.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 Comparable<? super T>>
voidComparables.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.