Uses of Class
org.assertj.core.util.diff.Delta
-
Packages that use Delta Package Description org.assertj.core.error org.assertj.core.internal org.assertj.core.util.diff -
-
Uses of Delta in org.assertj.core.error
Method parameters in org.assertj.core.error with type arguments of type Delta Modifier and Type Method Description protected static StringAbstractShouldHaveTextContent. diffsAsString(List<Delta<String>> diffsList)static ErrorMessageFactoryShouldHaveContent. shouldHaveContent(File actual, Charset charset, List<Delta<String>> diffs)Creates a new.ShouldHaveContentstatic ErrorMessageFactoryShouldHaveContent. shouldHaveContent(Path actual, Charset charset, List<Delta<String>> diffs)Creates a new.ShouldHaveContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(File actual, File expected, List<Delta<String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(InputStream actual, InputStream expected, List<Delta<String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(InputStream actual, String expected, List<Delta<String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(Path actual, Path expected, List<Delta<String>> diffs)Creates a new.ShouldHaveSameContent -
Uses of Delta in org.assertj.core.internal
Methods in org.assertj.core.internal that return types with arguments of type Delta Modifier and Type Method Description private List<Delta<String>>Diff. diff(BufferedReader actual, BufferedReader expected)List<Delta<String>>Diff. diff(File actual, String expected, Charset charset)List<Delta<String>>Diff. diff(File actual, Charset actualCharset, File expected, Charset expectedCharset)List<Delta<String>>Diff. diff(InputStream actual, InputStream expected)List<Delta<String>>Diff. diff(InputStream actual, String expected)List<Delta<String>>Diff. diff(Path actual, String expected, Charset charset)List<Delta<String>>Diff. diff(Path actual, Charset actualCharset, Path expected, Charset expectedCharset) -
Uses of Delta in org.assertj.core.util.diff
Subclasses of Delta in org.assertj.core.util.diff Modifier and Type Class Description classChangeDelta<T>Initially copied from https://code.google.com/p/java-diff-utils/.classDeleteDelta<T>Initially copied from https://code.google.com/p/java-diff-utils/.classInsertDelta<T>Initially copied from https://code.google.com/p/java-diff-utils/.Fields in org.assertj.core.util.diff with type parameters of type Delta Modifier and Type Field Description private List<Delta<T>>Patch. deltasstatic Comparator<Delta<?>>DeltaComparator. INSTANCEMethods in org.assertj.core.util.diff that return types with arguments of type Delta Modifier and Type Method Description List<Delta<T>>Patch. getDeltas()Get the list of computed deltasMethods in org.assertj.core.util.diff with parameters of type Delta Modifier and Type Method Description voidPatch. addDelta(Delta<T> delta)Add the given delta to this patchintDeltaComparator. compare(Delta<?> a, Delta<?> b)private static List<String>DiffUtils. getDeltaText(Delta<String> delta)getDeltaText returns the lines to be added to the Unified Diff text from the Delta parameter
-