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.String
AbstractShouldHaveTextContent. diffsAsString(java.util.List<Delta<java.lang.String>> diffsList)
static ErrorMessageFactory
ShouldHaveContent. shouldHaveContent(java.io.File actual, java.nio.charset.Charset charset, java.util.List<Delta<java.lang.String>> diffs)
Creates a new
.ShouldHaveContent
static ErrorMessageFactory
ShouldHaveContent. shouldHaveContent(java.nio.file.Path actual, java.nio.charset.Charset charset, java.util.List<Delta<java.lang.String>> diffs)
Creates a new
.ShouldHaveContent
static ErrorMessageFactory
ShouldHaveSameContent. shouldHaveSameContent(java.io.File actual, java.io.File expected, java.util.List<Delta<java.lang.String>> diffs)
Creates a new
.ShouldHaveSameContent
static ErrorMessageFactory
ShouldHaveSameContent. shouldHaveSameContent(java.io.InputStream actual, java.io.InputStream expected, java.util.List<Delta<java.lang.String>> diffs)
Creates a new
.ShouldHaveSameContent
static ErrorMessageFactory
ShouldHaveSameContent. 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.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 class
ChangeDelta<T>
Initially copied from https://code.google.com/p/java-diff-utils/.class
DeleteDelta<T>
Initially copied from https://code.google.com/p/java-diff-utils/.class
InsertDelta<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. deltas
static java.util.Comparator<Delta<?>>
DeltaComparator. INSTANCE
Methods 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 void
Patch. addDelta(Delta<T> delta)
Add the given delta to this patchint
DeltaComparator. 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
-