|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.hamcrest.BaseMatcher<T> org.hamcrest.TypeSafeMatcher<T> org.hamcrest.number.OrderingComparison<T>
public class OrderingComparison<T extends java.lang.Comparable<T>>
Method Summary | ||
---|---|---|
static
|
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. |
|
void |
describeMismatchSafely(T actual,
Description mismatchDescription)
Subclasses should override this. |
|
void |
describeTo(Description description)
Generates a description of the object. |
|
static
|
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
|
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
|
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
|
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. |
|
boolean |
matchesSafely(T actual)
Subclasses should implement this. |
Methods inherited from class org.hamcrest.TypeSafeMatcher |
---|
describeMismatch, matches |
Methods inherited from class org.hamcrest.BaseMatcher |
---|
_dont_implement_Matcher___instead_extend_BaseMatcher_, toString |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public boolean matchesSafely(T actual)
TypeSafeMatcher
matchesSafely
in class TypeSafeMatcher<T extends java.lang.Comparable<T>>
public void describeMismatchSafely(T actual, Description mismatchDescription)
TypeSafeMatcher
describeMismatchSafely
in class TypeSafeMatcher<T extends java.lang.Comparable<T>>
public void describeTo(Description description)
SelfDescribing
description
- The description to be built or appended to.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
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |