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</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 has 9 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.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 |
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 |
JEE | activation 1.0.2 JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor... | 27 |
The following table lists the most popular artifacts which are depending on httpunit-1.6. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | ehcache 1.2.3 ehcache is a pure Java, in-process cache with the following features: 1. Fast. 2. Simple. 3. Multiple eviction policies: LRU, LFU and FIFO. 4. Caches can be in memory or on disk. 5. Disk Stores can be persistent between VM restarts. 6. Distributed caching using multicast and RMI,... | 18 |
Cache | oscache 2.4 OSCache is a caching solution that includes a JSP tag library and set of classes to perform fine grained dynamic caching of JSP content, servlet responses or arbitrary objects. | 13 |
Cache | ehcache 1.2.4 Ehcache is a widely used pure Java, distributed in-process cache | 18 |
Build | maven-project-info-reports-plugin 2.4 The Maven Project Info Reports Plugin is a plugin that generates standard reports for the specified project. | 12 |
Servlet | winstone 0.9.10-hudson-6 Winstone is a servlet container that was written out of a desire to provide servlet functionality without the bloat that full J2EE compliance introduces. | 33 |
The following plugins are used in the httpunit-1.6.jar
The following packages are defined in the httpunit-1.6.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.
<?xml version="1.0" encoding="UTF-8"?> <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</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>junit</groupId> <artifactId>junit</artifactId> <version>3.8.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>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.0.2</version> <scope>test</scope> </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> <plugin> <artifactId>maven-surefire-plugin</artifactId> <configuration> <testFailureIgnore>true</testFailureIgnore> </configuration> </plugin> </plugins> </build> </project>