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 java.lang.StringAbstractShouldHaveTextContent. diffsAsString(java.util.List<Delta<java.lang.String>> diffsList)static ErrorMessageFactoryShouldHaveContent. shouldHaveContent(java.io.File actual, java.nio.charset.Charset charset, java.util.List<Delta<java.lang.String>> diffs)Creates a new.ShouldHaveContentstatic ErrorMessageFactoryShouldHaveContent. shouldHaveContent(java.nio.file.Path actual, java.nio.charset.Charset charset, java.util.List<Delta<java.lang.String>> diffs)Creates a new.ShouldHaveContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(java.io.File actual, java.io.File expected, java.util.List<Delta<java.lang.String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(java.io.InputStream actual, java.io.InputStream expected, java.util.List<Delta<java.lang.String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(java.io.InputStream actual, java.lang.String expected, java.util.List<Delta<java.lang.String>> diffs)Creates a new.ShouldHaveSameContentstatic ErrorMessageFactoryShouldHaveSameContent. shouldHaveSameContent(java.nio.file.Path actual, java.nio.file.Path expected, java.util.List<Delta<java.lang.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 java.util.List<Delta<java.lang.String>>Diff. diff(java.io.BufferedReader actual, java.io.BufferedReader expected)java.util.List<Delta<java.lang.String>>Diff. diff(java.io.File actual, java.lang.String expected, java.nio.charset.Charset charset)java.util.List<Delta<java.lang.String>>Diff. diff(java.io.File actual, java.nio.charset.Charset actualCharset, java.io.File expected, java.nio.charset.Charset expectedCharset)java.util.List<Delta<java.lang.String>>Diff. diff(java.io.InputStream actual, java.io.InputStream expected)java.util.List<Delta<java.lang.String>>Diff. diff(java.io.InputStream actual, java.lang.String expected)java.util.List<Delta<java.lang.String>>Diff. diff(java.nio.file.Path actual, java.lang.String expected, java.nio.charset.Charset charset)java.util.List<Delta<java.lang.String>>Diff. diff(java.nio.file.Path actual, java.nio.charset.Charset actualCharset, java.nio.file.Path expected, java.nio.charset.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 java.util.List<Delta<T>>Patch. deltasstatic java.util.Comparator<Delta<?>>DeltaComparator. INSTANCEMethods in org.assertj.core.util.diff that return types with arguments of type Delta Modifier and Type Method Description java.util.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 java.util.List<java.lang.String>DiffUtils. getDeltaText(Delta<java.lang.String> delta)getDeltaText returns the lines to be added to the Unified Diff text from the Delta parameter
-