public class OrderingComparison
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static <T extends java.lang.Comparable<T>> |
comparesEqualTo(T value)
Creates a matcher of
Comparable object that matches when the examined object is
equal to the specified value, as reported by the compareTo method of the
examined object. |
static <T extends java.lang.Comparable<T>> |
greaterThan(T value)
Creates a matcher of
Comparable object that matches when the examined object is
greater than the specified value, as reported by the compareTo method of the
examined object. |
static <T extends java.lang.Comparable<T>> |
greaterThanOrEqualTo(T value)
Creates a matcher of
Comparable object that matches when the examined object is
greater than or equal to the specified value, as reported by the compareTo method
of the examined object. |
static <T extends java.lang.Comparable<T>> |
lessThan(T value)
Creates a matcher of
Comparable object that matches when the examined object is
less than the specified value, as reported by the compareTo method of the
examined object. |
static <T extends java.lang.Comparable<T>> |
lessThanOrEqualTo(T value)
Creates a matcher of
Comparable object that matches when the examined object is
less than or equal to the specified value, as reported by the compareTo method
of the examined object. |
public static <T extends java.lang.Comparable<T>> Matcher<T> comparesEqualTo(T value)
Comparable
object that matches when the examined object is
equal to the specified value, as reported by the compareTo
method of the
examined object.
For example:
assertThat(1, comparesEqualTo(1))
value
- the value which, when passed to the compareTo method of the examined object, should return zeropublic static <T extends java.lang.Comparable<T>> Matcher<T> greaterThan(T value)
Comparable
object that matches when the examined object is
greater than the specified value, as reported by the compareTo
method of the
examined object.
For example:
assertThat(2, greaterThan(1))
value
- the value which, when passed to the compareTo method of the examined object, should return greater
than zeropublic static <T extends java.lang.Comparable<T>> Matcher<T> greaterThanOrEqualTo(T value)
Comparable
object that matches when the examined object is
greater than or equal to the specified value, as reported by the compareTo
method
of the examined object.
For example:
assertThat(1, greaterThanOrEqualTo(1))
value
- the value which, when passed to the compareTo method of the examined object, should return greater
than or equal to zeropublic static <T extends java.lang.Comparable<T>> Matcher<T> lessThan(T value)
Comparable
object that matches when the examined object is
less than the specified value, as reported by the compareTo
method of the
examined object.
For example:
assertThat(1, lessThan(2))
value
- the value which, when passed to the compareTo method of the examined object, should return less
than zeropublic static <T extends java.lang.Comparable<T>> Matcher<T> lessThanOrEqualTo(T value)
Comparable
object that matches when the examined object is
less than or equal to the specified value, as reported by the compareTo
method
of the examined object.
For example:
assertThat(1, lessThanOrEqualTo(1))
value
- the value which, when passed to the compareTo method of the examined object, should return less
than or equal to zero