Uses of Class
com.google.common.truth.Correspondence
-
Packages that use Correspondence Package Description com.google.common.truth Truth is a library for performing assertions in tests: -
-
Uses of Correspondence in com.google.common.truth
Methods in com.google.common.truth that return Correspondence Modifier and Type Method Description Correspondence<A,E>
Correspondence. formattingDiffsUsing(Correspondence.DiffFormatter<? super A,? super E> formatter)
Returns a new correspondence which is like this one, except that the given formatter may be used to format the difference between a pair of elements that do not correspond.static <A extends @Nullable Object,E extends @Nullable Object>
Correspondence<A,E>Correspondence. from(Correspondence.BinaryPredicate<A,E> predicate, String description)
Constructs aCorrespondence
that compares actual and expected elements using the given binary predicate.static Correspondence<Number,Number>
Correspondence. tolerance(double tolerance)
Returns aCorrespondence
betweenNumber
instances that considers instances to correspond (i.e.static <A extends @Nullable Object,E extends @Nullable Object>
Correspondence<A,E>Correspondence. transforming(Function<A,?> actualTransform, Function<E,?> expectedTransform, String description)
Constructs aCorrespondence
that compares elements by transforming the actual and the expected elements using the given functions and testing the transformed values for equality.static <A extends @Nullable Object,E extends @Nullable Object>
Correspondence<A,E>Correspondence. transforming(Function<A,? extends E> actualTransform, String description)
Constructs aCorrespondence
that compares elements by transforming the actual elements using the given function and testing for equality with the expected elements.Methods in com.google.common.truth with parameters of type Correspondence Modifier and Type Method Description <A extends @Nullable Object,E extends @Nullable Object>
IterableSubject.UsingCorrespondence<A,E>IterableSubject. comparingElementsUsing(Correspondence<? super A,? super E> correspondence)
Starts a method chain for a check in which the actual elements (i.e. the elements of theIterable
under test) are compared to expected elements using the givenCorrespondence
.<A extends @Nullable Object,E extends @Nullable Object>
MapSubject.UsingCorrespondence<A,E>MapSubject. comparingValuesUsing(Correspondence<? super A,? super E> correspondence)
Starts a method chain for a check in which the actual values (i.e. the values of theMap
under test) are compared to expected values using the givenCorrespondence
.<A extends @Nullable Object,E extends @Nullable Object>
MultimapSubject.UsingCorrespondence<A,E>MultimapSubject. comparingValuesUsing(Correspondence<? super A,? super E> correspondence)
Starts a method chain for a check in which the actual values (i.e. the values of theMultimap
under test) are compared to expected values using the givenCorrespondence
.
-