com.google.common.truth.CollectionSubject.Has.allFrom(Iterable)
|
com.google.common.truth.CollectionSubject.Has.allOf(T)
|
com.google.common.truth.CollectionSubject.Has.allOf(T, T, T...)
|
com.google.common.truth.CollectionSubject.Has.anyFrom(Iterable)
|
com.google.common.truth.CollectionSubject.Has.anyOf(T)
|
com.google.common.truth.CollectionSubject.Has.anyOf(T, T, T...)
|
com.google.common.truth.IterableSubject.containsOnlyElements(Object, Object, Object...)
|
com.google.common.truth.IterableSubject.containsOnlyElementsIn(Iterable>)
|
com.google.common.truth.Subject.equals(Object)
This method is not a proposition, but the default Object equality method.
Testing code should use "is" or "isEqualTo" propositions for equality tests.
|
com.google.common.truth.Subject.hashCode()
Equals/Hashcode is not supported on Subjects. Their only use is as a holder of
propositions. Use of equals() is deprecated and forwards to isEqualTo() and
hashCode() is disallowed.
|
com.google.common.truth.MapSubject.hasKey(K)
|
com.google.common.truth.Subject.is(Object)
|
com.google.common.truth.Subject.isA(Class>)
|
com.google.common.truth.IntegerSubject.isBetween(int, int)
Use isIn(Range.open(lower, upper)) instead.
|
com.google.common.truth.LongSubject.isBetween(long, long)
Use isIn(Range.open(lower, upper)) instead.
|
com.google.common.truth.PrimitiveFloatArraySubject.isEqualTo(Object)
use #isEqualTo(Object, double)
|
com.google.common.truth.PrimitiveDoubleArraySubject.isEqualTo(Object)
|
com.google.common.truth.IntegerSubject.isInclusivelyInRange(int, int)
Use isIn(Range.closed(lower, upper)) instead.
|
com.google.common.truth.LongSubject.isInclusivelyInRange(long, long)
Use isIn(Range.closed(lower, upper)) instead.
|
com.google.common.truth.Subject.isNotA(Class>)
|
com.google.common.truth.PrimitiveFloatArraySubject.isNotEqualTo(Object)
use #isNotEqualTo(Object, double)
|
com.google.common.truth.PrimitiveDoubleArraySubject.isNotEqualTo(Object)
|
com.google.common.truth.CollectionSubject.Has.item(T)
|
com.google.common.truth.IterableSubject.iteratesOverSequence(Object...)
Use containsExactly(Object, Object...).inOrder() instead.
|
com.google.common.truth.Subject.labeled(String)
|
com.google.common.truth.MapSubject.lacksKey(K)
|
com.google.common.truth.CollectionSubject.Has.noneFrom(Iterable)
|
com.google.common.truth.CollectionSubject.Has.noneOf(T)
|
com.google.common.truth.CollectionSubject.Has.noneOf(T, T, T...)
|
com.google.common.truth.MapSubject.WithValue.withValue(V)
|