Package com.google.common.truth
Class ComparableSubject<T extends Comparable>
java.lang.Object
com.google.common.truth.Subject
com.google.common.truth.ComparableSubject<T>
- Type Parameters:
T
- the type of the object being tested by thisComparableSubject
- Direct Known Subclasses:
BigDecimalSubject
,DoubleSubject
,FloatSubject
,IntegerSubject
,LongSubject
,StringSubject
Propositions for
Comparable
typed subjects.-
Nested Class Summary
Nested classes/interfaces inherited from class com.google.common.truth.Subject
Subject.EqualityCheck, Subject.Factory<SubjectT extends Subject,
ActualT> -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal void
Checks that the subject is greater than or equal toother
.final void
Checks that the subject is less than or equal toother
.void
isEquivalentAccordingToCompareTo
(T expected) Checks that the subject is equivalent toother
according toComparable.compareTo(T)
, (i.e., checks thata.comparesTo(b) == 0
).final void
isGreaterThan
(T other) Checks that the subject is greater thanother
.final void
Checks that the subject is inrange
.final void
isLessThan
(T other) Checks that the subject is less thanother
.final void
Checks that the subject is not inrange
.Methods inherited from class com.google.common.truth.Subject
actual, actualCustomStringRepresentation, actualCustomStringRepresentationForPackageMembersToCall, butWas, check, check, checkNoNeedToDisplayBothValues, equals, fail, fail, fail, failEqualityCheckForEqualsWithoutDescription, failWithActual, failWithActual, failWithActual, failWithActual, failWithBadResults, failWithCustomSubject, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutActual, failWithoutSubject, hashCode, ignoreCheck, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameInstanceAs, isNull, isSameInstanceAs, toString, typeDescription
-
Field Details
-
actual
Constructor for use by subclasses. If you want to create an instance of this class itself, callcheck(...)
.that(actual)
.
-
-
Constructor Details
-
ComparableSubject
-
-
Method Details
-
isIn
Checks that the subject is inrange
. -
isNotIn
Checks that the subject is not inrange
. -
isEquivalentAccordingToCompareTo
Checks that the subject is equivalent toother
according toComparable.compareTo(T)
, (i.e., checks thata.comparesTo(b) == 0
).Note: Do not use this method for checking object equality. Instead, use
Subject.isEqualTo(Object)
. -
isGreaterThan
Checks that the subject is greater thanother
.To check that the subject is greater than or equal to
other
, useisAtLeast(T)
. -
isLessThan
Checks that the subject is less thanother
.To check that the subject is less than or equal to
other
, useisAtMost(T)
. -
isAtMost
Checks that the subject is less than or equal toother
.To check that the subject is strictly less than
other
, useisLessThan(T)
. -
isAtLeast
Checks that the subject is greater than or equal toother
.To check that the subject is strictly greater than
other
, useisGreaterThan(T)
.
-