Package com.google.common.truth
Interface Correspondence.DiffFormatter<A extends @Nullable Object,E extends @Nullable Object>
-
public static interface Correspondence.DiffFormatter<A extends @Nullable Object,E extends @Nullable Object>A functional interface to be used format the diff between a pair of objects of typesAandE.This interface will normally be implemented using a lambda or a method reference, and the resulting object will normally be passed directly to
Correspondence.formattingDiffsUsing(com.google.common.truth.Correspondence.DiffFormatter<? super A, ? super E>). As a result, you should almost never seeDiffFormatterused as the type of a field or variable, or a return type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable StringformatDiff(A actual, E expected)Returns aStringdescribing the difference between theactualandexpectedvalues, if possible, ornullif not.
-