XMLUnit for Java.
XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions..
Here is the list of declaration for xmlunit. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <version>1.1</version> </dependency>
If you think this Maven repository POM file listing for xmlunit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD License
URL: http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt.
The xmlunit-1.1 has 1 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | junit 3.8.2 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 555 |
The following table lists the most popular artifacts which are depending on xmlunit-1.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
XML Parser | mule-transport-xfire 2.0.0-RC2 A Mule transport for SOAP connectivity using XFire, a STaX-based SOAP stack. | 5 |
Data Structure | XmlSchema 1.4.4 Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries. | 6 |
XML | mule-module-xml 2.0.0 Functionality for working with XML | 5 |
Groovy | groovy-all 1.5.4 Groovy: A powerful, dynamic language for the JVM | 6 |
Data Structure | XmlSchema 1.4.3 Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries. | 8 |
Groovy | groovy 1.1-rc-2 Groovy: A powerful, dynamic language for the JVM | 30 |
XML | mule-module-xml 2.0.2 Functionality for working with XML | 7 |
Data Structure | XmlSchema 1.4.2 Commons XMLSchema is a light weight schema object model that can be used to manipualte or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependancies on third party libraries. | 9 |
XML | mule-module-xml 2.0.0-RC2 Functionality for working with XML | 7 |
Groovy | groovy 1.5.7 Groovy: A powerful, dynamic language for the JVM | 24 |
Testing | test-support 1.0-alpha-4 Set of classes to assist in creation of unit tests | 12 |
XML | mule-module-xml 2.0.1 Functionality for working with XML | 6 |
Groovy | groovy 1.5.6 Groovy: A powerful, dynamic language for the JVM | 7 |
XML | mule-module-xml 2.0.0-RC3 Functionality for working with XML | 5 |
Data Structure | XmlSchema 1.4.5 Commons XMLSchema is a light weight schema object model that can be used to manipulate or generate a schema. It has a clean, easy to use API and can easily be integrated into an existing project since it has almost no dependencies on third party libraries. | 8 |
XML Binding | axiom-impl 1.2.13 The Axiom default implementation. | 10 |
The following packages are defined in the xmlunit-1.1.jar
org.custommonkey.xmlunit org.custommonkey.xmlunit.examples org.custommonkey.xmlunit.exceptions org.custommonkey.xmlunit.jaxp13 org.custommonkey.xmlunit.util
Here is the content of the POM file.
<?xml version="1.0"?> <!-- This POM is not usable as means to build XMLUnit with Maven2, it is a minimal POM to allow XMLUnit's artifacts to be added to a Maven repository. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>xmlunit</groupId> <artifactId>xmlunit</artifactId> <packaging>jar</packaging> <name>XMLUnit for Java</name> <version>1.1</version> <url>http://xmlunit.sourceforge.net/</url> <description>XMLUnit compares a control XML document to a test document or the result of a transformation, validates documents, and compares the results of XPath expressions.</description> <licenses> <license> <name>BSD License</name> <url>http://xmlunit.svn.sourceforge.net/viewvc/*checkout*/xmlunit/trunk/xmlunit/LICENSE.txt</url> </license> </licenses> <scm> <url>http://xmlunit.svn.sourceforge.net/viewvc/xmlunit/</url> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.2</version> <optional>true</optional> </dependency> </dependencies> </project>