Package | Description |
---|---|
org.custommonkey.xmlunit |
Root of the XMLUnit 1.x compatibility layer.
|
Modifier and Type | Class and Description |
---|---|
class |
DetailedDiff
Compares and describes all the differences between two XML documents.
|
Modifier and Type | Method and Description |
---|---|
Diff |
XMLTestCase.compareXML(org.w3c.dom.Document control,
org.w3c.dom.Document test)
Compare two XML documents provided as strings
|
static Diff |
XMLUnit.compareXML(org.w3c.dom.Document control,
org.w3c.dom.Document test)
Compare two XML documents provided as strings
|
Diff |
XMLTestCase.compareXML(org.xml.sax.InputSource control,
org.xml.sax.InputSource test)
Compare XML documents provided by two InputSource classes
|
static Diff |
XMLUnit.compareXML(org.xml.sax.InputSource control,
org.xml.sax.InputSource test)
Compare XML documents provided by two InputSource classes
|
Diff |
XMLTestCase.compareXML(java.io.Reader control,
java.io.Reader test)
Compare XML documents provided by two Reader classes
|
static Diff |
XMLUnit.compareXML(java.io.Reader control,
java.io.Reader test)
Compare XML documents provided by two Reader classes
|
Diff |
XMLTestCase.compareXML(java.io.Reader control,
java.lang.String test)
Compare XML documents provided by two Reader classes
|
static Diff |
XMLUnit.compareXML(java.io.Reader control,
java.lang.String test)
Compare XML documents provided by two Reader classes
|
Diff |
XMLTestCase.compareXML(java.lang.String control,
java.io.Reader test)
Compare XML documents provided by two Reader classes
|
static Diff |
XMLUnit.compareXML(java.lang.String control,
java.io.Reader test)
Compare XML documents provided by two Reader classes
|
Diff |
XMLTestCase.compareXML(java.lang.String control,
java.lang.String test)
Compare two XML documents provided as strings
|
static Diff |
XMLUnit.compareXML(java.lang.String control,
java.lang.String test)
Compare two XML documents provided as strings
|
Modifier and Type | Method and Description |
---|---|
static void |
XMLAssert.assertXMLEqual(Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not similar.
|
void |
XMLTestCase.assertXMLEqual(Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not similar.
|
static void |
XMLAssert.assertXMLEqual(java.lang.String msg,
Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not similar.
|
void |
XMLTestCase.assertXMLEqual(java.lang.String msg,
Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not similar.
|
static void |
XMLAssert.assertXMLIdentical(Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not identical
|
void |
XMLTestCase.assertXMLIdentical(Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not identical
|
static void |
XMLAssert.assertXMLIdentical(java.lang.String msg,
Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not identical
|
void |
XMLTestCase.assertXMLIdentical(java.lang.String msg,
Diff diff,
boolean assertion)
Assert that the result of an XML comparison is or is not identical
|
private static java.lang.String |
XMLAssert.getFailMessage(java.lang.String msg,
Diff diff) |
Constructor and Description |
---|
DetailedDiff(Diff prototype)
Create a new instance based on a prototypical Diff instance
|
Diff(Diff prototype)
Construct a Diff from a prototypical instance.
|