com.google.common.truth.ComparableSubject.comparesEqualTo(T)
|
com.google.common.truth.MultimapSubject.containsExactly(Multimap, ?>)
|
com.google.common.truth.Subject.equals(Object)
|
com.google.common.truth.PrimitiveFloatArraySubject.TolerantPrimitiveFloatArrayComparison.equals(Object)
|
com.google.common.truth.PrimitiveDoubleArraySubject.TolerantPrimitiveDoubleArrayComparison.equals(Object)
|
com.google.common.truth.FloatSubject.TolerantFloatComparison.equals(Object)
|
com.google.common.truth.DoubleSubject.TolerantDoubleComparison.equals(Object)
|
com.google.common.truth.Correspondence.equals(Object)
|
com.google.common.truth.extensions.proto.ProtoFluentAssertion.equals(Object)
|
com.google.common.truth.extensions.proto.IterableOfProtosFluentAssertion.equals(Object)
Do not call equals() on a IterableOfProtosFluentAssertion .
|
com.google.common.truth.Subject.failWithoutSubject(String)
|
com.google.common.truth.Subject.getDisplaySubject()
Prefer #actualAsString() for display-formatted access to the subject.
|
com.google.common.truth.Subject.getSubject()
Prefer #actual() for direct access to the subject.
|
com.google.common.truth.Subject.hashCode()
|
com.google.common.truth.PrimitiveFloatArraySubject.TolerantPrimitiveFloatArrayComparison.hashCode()
|
com.google.common.truth.PrimitiveDoubleArraySubject.TolerantPrimitiveDoubleArrayComparison.hashCode()
|
com.google.common.truth.FloatSubject.TolerantFloatComparison.hashCode()
|
com.google.common.truth.DoubleSubject.TolerantDoubleComparison.hashCode()
|
com.google.common.truth.Correspondence.hashCode()
|
com.google.common.truth.extensions.proto.ProtoFluentAssertion.hashCode()
|
com.google.common.truth.extensions.proto.IterableOfProtosFluentAssertion.hashCode()
IterableOfProtosFluentAssertion does not support hashCode() .
|
com.google.common.truth.PrimitiveDoubleArraySubject.hasValuesNotWithin(double)
Write a for loop over the values looking for mismatches (see this implementation
for an example)
|
com.google.common.truth.PrimitiveFloatArraySubject.hasValuesNotWithin(float)
Write a for loop over the values looking for mismatches (see this implementation
for an example)
|
com.google.common.truth.SetMultimapSubject.isEqualTo(ListMultimap, ?>)
|
com.google.common.truth.extensions.proto.LiteProtoSubject.isEqualTo(MessageLite.Builder)
A Builder can never compare equal to a MessageLite instance. Use build() ,
or buildPartial() on the argument to get a MessageLite for comparison instead.
|
com.google.common.truth.PrimitiveFloatArraySubject.isEqualTo(Object)
use either usingTolerance(someTolerance).containsExactly(someValues).inOrder() or usingExactEquality().containsExactly(someValues).inOrder()
|
com.google.common.truth.PrimitiveDoubleArraySubject.isEqualTo(Object)
use either usingTolerance(someTolerance).containsExactly(someValues).inOrder() or usingExactEquality().containsExactly(someValues).inOrder()
|
com.google.common.truth.AtomicLongMapSubject.isEqualTo(Object)
AtomicLongMap does not define equality (i.e., it does not implement
equals()), so you probably don't want to call this method. Instead, perform your assertion
on the map view (e.g., assertThat(atomicLongMap.asMap()).isEqualTo(EXPECTED_MAP)).
|
com.google.common.truth.PrimitiveDoubleArraySubject.isEqualTo(Object, double)
use usingTolerance(someTolerance).containsExactly(someValues).inOrder() ,
noting the different behaviour for non-finite values
|
com.google.common.truth.PrimitiveFloatArraySubject.isEqualTo(Object, float)
use usingTolerance(someTolerance).containsExactly(someValues).inOrder() ,
noting the different behaviour for non-finite values
|
com.google.common.truth.ListMultimapSubject.isEqualTo(SetMultimap, ?>)
|
com.google.common.truth.DoubleSubject.isEquivalentAccordingToCompareTo(Double)
|
com.google.common.truth.FloatSubject.isEquivalentAccordingToCompareTo(Float)
|
com.google.common.truth.IntegerSubject.isEquivalentAccordingToCompareTo(Integer)
|
com.google.common.truth.LongSubject.isEquivalentAccordingToCompareTo(Long)
|
com.google.common.truth.StringSubject.isEquivalentAccordingToCompareTo(String)
|
com.google.common.truth.extensions.proto.LiteProtoSubject.isNotEqualTo(MessageLite.Builder)
A Builder will never compare equal to a MessageLite instance. Use build() ,
or buildPartial() on the argument to get a MessageLite for comparison instead.
|
com.google.common.truth.PrimitiveFloatArraySubject.isNotEqualTo(Object)
If you really want this, convert the array to a list, possibly using Floats.asList(float...) , and do the assertion on that, e.g. assertThat(asList(actualFloatArray)).isNotEqualTo(asList(expectedFloatArray)); .
|
com.google.common.truth.PrimitiveDoubleArraySubject.isNotEqualTo(Object)
If you really want this, convert the array to a list, possibly using Doubles.asList(double...) , and do the assertion on that, e.g. assertThat(asList(actualDoubleArray)).isNotEqualTo(asList(expectedDoubleArray)); .
|
com.google.common.truth.AtomicLongMapSubject.isNotEqualTo(Object)
AtomicLongMap does not define equality (i.e., it does not implement
equals()), so you probably don't want to call this method. Instead, perform your assertion
on the map view (e.g., assertThat(atomicLongMap.asMap()).isNotEqualTo(UNEXPECTED_MAP)).
|
com.google.common.truth.PrimitiveDoubleArraySubject.isNotEqualTo(Object, double)
Write a for loop over the values looking for mismatches (see this implementation
for an example)
|
com.google.common.truth.PrimitiveFloatArraySubject.isNotEqualTo(Object, float)
Write a for loop over the values looking for mismatches (see this implementation
for an example)
|
com.google.common.truth.IterableSubject.isPartiallyOrdered()
|
com.google.common.truth.IterableSubject.isPartiallyOrdered(Comparator>)
|