HttpUnit.
A Java library for the automatic stimulation and testing of web applications..
Here is the list of declaration for httpunit. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <version>1.7</version> </dependency>
If you think this Maven repository POM file listing for httpunit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:MIT License
URL: http://httpunit.sourceforge.net/doc/license.html.
The httpunit-1.7 has 8 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 |
---|---|---|
Scripting | js 1.6R5 Rhino: JavaScript for Java | 9 |
Web Framework | jtidy 4aug2000r7-dev JTidy is a Java port of HTML Tidy, a HTML syntax checker and pretty printer. Like its non-Java cousin, JTidy can be used as a tool for cleaning up malformed and faulty HTML. In addition, JTidy provides a DOM parser for real-world HTML. | 10 |
JUnit | junit 3.8.1 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. | 1966 |
Network | mail 1.4 The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. | 461 |
The following table lists the most popular artifacts which are depending on httpunit-1.7. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Build | openutils-testing4web 1.2.1 A simple infrastructure to build unit tests using ServletUnit, with all the needed Maven dependencies already set up | 7 |
The following plugins are used in the httpunit-1.7.jar
The following packages are defined in the httpunit-1.7.jar
com.meterware.httpunit com.meterware.httpunit.controls com.meterware.httpunit.cookies com.meterware.httpunit.dom com.meterware.httpunit.javascript com.meterware.httpunit.parsing com.meterware.httpunit.protocol com.meterware.httpunit.scripting com.meterware.pseudoserver com.meterware.servletunit
Here is the content of the POM file.
<?xml version="1.0"?><project> <modelVersion>4.0.0</modelVersion> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <name>HttpUnit</name> <version>1.7</version> <description>A Java library for the automatic stimulation and testing of web applications.</description> <url>http://httpunit.sourceforge.net</url> <licenses> <license> <name>MIT License</name> <url>http://httpunit.sourceforge.net/doc/license.html</url> </license> </licenses> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.4</source> <target>1.4</target> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> <version>2.2.1</version> <optional>true</optional> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.6.2</version> <optional>true</optional> </dependency> <dependency> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>0.9.5</version> <optional>true</optional> </dependency> <dependency> <groupId>rhino</groupId> <artifactId>js</artifactId> <version>1.6R5</version> <optional>true</optional> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>jtidy</groupId> <artifactId>jtidy</artifactId> <version>4aug2000r7-dev</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <optional>true</optional> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> <scope>test</scope> </dependency> </dependencies> </project>