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.6.1</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.
The httpunit-1.6.1 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 |
---|---|---|
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 |
The following table lists the most popular artifacts which are depending on httpunit-1.6.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Cache | ehcache 1.2.4 Ehcache is a widely used pure Java, distributed in-process cache | 18 |
Cache | ehcache 1.2.4 Ehcache is a widely used pure Java, distributed in-process cache | 18 |
Template | velocity-tools 2.0 VelocityTools is an integrated collection of Velocity subprojects with the common goal of creating tools and infrastructure to speed and ease development of both web and non-web applications using the Velocity template engine. | 13 |
The following plugins are used in the httpunit-1.6.1.jar
The following packages are defined in the httpunit-1.6.1.jar
com.meterware.httpunit com.meterware.httpunit.cookies com.meterware.httpunit.javascript com.meterware.httpunit.parsing com.meterware.httpunit.scripting com.meterware.pseudoserver com.meterware.servletunit
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd "> <modelVersion>4.0.0</modelVersion> <groupId>httpunit</groupId> <artifactId>httpunit</artifactId> <name>HttpUnit</name> <version>1.6.1</version> <description>A Java library for the automatic stimulation and testing of web applications.</description> <dependencies> <dependency> <groupId>xerces</groupId> <artifactId>xmlParserAPIs</artifactId> <version>2.2.1</version> </dependency> <dependency> <groupId>xerces</groupId> <artifactId>xercesImpl</artifactId> <version>2.6.2</version> </dependency> <dependency> <groupId>nekohtml</groupId> <artifactId>nekohtml</artifactId> <version>0.9.1</version> </dependency> <dependency> <groupId>rhino</groupId> <artifactId>js</artifactId> <version>1.5R4.1</version> </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> <!-- not a test dependency, httpunit extends junit --> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.3.1</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>src</sourceDirectory> <testSourceDirectory>test</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.3</source> <target>1.3</target> </configuration> </plugin> </plugins> </build> </project>