Package org.assertj.core.error
Class ShouldBeSorted
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeSorted
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies a group of elements is sorted failed.
A group of elements can be a collection or an array.
A group of elements can be a collection or an array.
- Author:
- Joel Costigliola
-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldBeSorted(int i, Object group) Creates a new.ShouldBeSortedstatic ErrorMessageFactoryshouldBeSortedAccordingToGivenComparator(int i, Object group, Comparator<?> comparator) static ErrorMessageFactoryshouldHaveComparableElementsAccordingToGivenComparator(Object actual, Comparator<?> comparator) static ErrorMessageFactoryMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Method Details
-
shouldBeSorted
Creates a new.ShouldBeSorted- Parameters:
i- the index of elements whose not naturally ordered with the next.group- the actual group in the failed assertion (either collection or an array).- Returns:
- an instance of
ErrorMessageFactory.
-
shouldBeSortedAccordingToGivenComparator
public static ErrorMessageFactory shouldBeSortedAccordingToGivenComparator(int i, Object group, Comparator<?> comparator) -
shouldHaveMutuallyComparableElements
-
shouldHaveComparableElementsAccordingToGivenComparator
public static ErrorMessageFactory shouldHaveComparableElementsAccordingToGivenComparator(Object actual, Comparator<?> comparator)
-