Uses of Class
org.custommonkey.xmlunit.Diff
-
Packages that use Diff Package Description org.custommonkey.xmlunit Root of the XMLUnit 1.x compatibility layer. -
-
Uses of Diff in org.custommonkey.xmlunit
Subclasses of Diff in org.custommonkey.xmlunit Modifier and Type Class Description class
DetailedDiff
Compares and describes all the differences between two XML documents.Methods in org.custommonkey.xmlunit that return Diff Modifier and Type Method Description Diff
XMLTestCase. compareXML(java.io.Reader control, java.io.Reader test)
Compare XML documents provided by two Reader classesDiff
XMLTestCase. compareXML(java.io.Reader control, java.lang.String test)
Compare XML documents provided by two Reader classesDiff
XMLTestCase. compareXML(java.lang.String control, java.io.Reader test)
Compare XML documents provided by two Reader classesDiff
XMLTestCase. compareXML(java.lang.String control, java.lang.String test)
Compare two XML documents provided as stringsDiff
XMLTestCase. compareXML(org.w3c.dom.Document control, org.w3c.dom.Document test)
Compare two XML documents provided as stringsDiff
XMLTestCase. compareXML(org.xml.sax.InputSource control, org.xml.sax.InputSource test)
Compare XML documents provided by two InputSource classesstatic Diff
XMLUnit. compareXML(java.io.Reader control, java.io.Reader test)
Compare XML documents provided by two Reader classesstatic Diff
XMLUnit. compareXML(java.io.Reader control, java.lang.String test)
Compare XML documents provided by two Reader classesstatic Diff
XMLUnit. compareXML(java.lang.String control, java.io.Reader test)
Compare XML documents provided by two Reader classesstatic Diff
XMLUnit. compareXML(java.lang.String control, java.lang.String test)
Compare two XML documents provided as stringsstatic Diff
XMLUnit. compareXML(org.w3c.dom.Document control, org.w3c.dom.Document test)
Compare two XML documents provided as stringsstatic Diff
XMLUnit. compareXML(org.xml.sax.InputSource control, org.xml.sax.InputSource test)
Compare XML documents provided by two InputSource classesMethods in org.custommonkey.xmlunit with parameters of type Diff Modifier and Type Method Description 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.static void
XMLAssert. assertXMLEqual(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.void
XMLTestCase. assertXMLEqual(Diff diff, boolean assertion)
Assert that the result of an XML comparison is or is not similar.static void
XMLAssert. assertXMLIdentical(java.lang.String msg, Diff diff, boolean assertion)
Assert that the result of an XML comparison is or is not identicalstatic void
XMLAssert. assertXMLIdentical(Diff diff, boolean assertion)
Assert that the result of an XML comparison is or is not identicalvoid
XMLTestCase. assertXMLIdentical(java.lang.String msg, Diff diff, boolean assertion)
Assert that the result of an XML comparison is or is not identicalvoid
XMLTestCase. assertXMLIdentical(Diff diff, boolean assertion)
Assert that the result of an XML comparison is or is not identicalprivate static java.lang.String
XMLAssert. getFailMessage(java.lang.String msg, Diff diff)
Constructors in org.custommonkey.xmlunit with parameters of type Diff Constructor Description DetailedDiff(Diff prototype)
Create a new instance based on a prototypical Diff instanceDiff(Diff prototype)
Construct a Diff from a prototypical instance.
-