Package com.google.common.truth
Class IntegerSubject
- java.lang.Object
-
- com.google.common.truth.Subject
-
- com.google.common.truth.ComparableSubject<java.lang.Integer>
-
- com.google.common.truth.IntegerSubject
-
public class IntegerSubject extends ComparableSubject<java.lang.Integer>
Propositions forInteger
subjects.- Author:
- David Saff, Christian Gruber (cgruber@israfil.net), Kurt Alfred Kluever
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.google.common.truth.Subject
Subject.Factory<SubjectT extends Subject,ActualT>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
IntegerSubject(FailureMetadata metadata, @Nullable java.lang.Integer integer)
Constructor for use by subclasses.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
isEquivalentAccordingToCompareTo(@Nullable java.lang.Integer other)
Deprecated.UseSubject.isEqualTo(java.lang.Object)
instead.-
Methods inherited from class com.google.common.truth.ComparableSubject
isAtLeast, isAtMost, isGreaterThan, isIn, isLessThan, isNotIn
-
Methods inherited from class com.google.common.truth.Subject
actualCustomStringRepresentation, check, equals, failWithActual, failWithActual, failWithoutActual, hashCode, ignoreCheck, isAnyOf, isEqualTo, isIn, isInstanceOf, isNoneOf, isNotEqualTo, isNotIn, isNotInstanceOf, isNotNull, isNotSameInstanceAs, isNull, isSameInstanceAs, toString
-
-
-
-
Constructor Detail
-
IntegerSubject
protected IntegerSubject(FailureMetadata metadata, @Nullable java.lang.Integer integer)
Constructor for use by subclasses. If you want to create an instance of this class itself, callcheck(...)
.that(actual)
.
-
-
Method Detail
-
isEquivalentAccordingToCompareTo
@Deprecated public final void isEquivalentAccordingToCompareTo(@Nullable java.lang.Integer other)
Deprecated.UseSubject.isEqualTo(java.lang.Object)
instead. Integer comparison is consistent with equality.Description copied from class:ComparableSubject
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)
.- Overrides:
isEquivalentAccordingToCompareTo
in classComparableSubject<java.lang.Integer>
-
-