jMock.
jMock is a library for testing Java code using mock objects.
Here is the list of declaration for jmock. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>jmock</groupId> <artifactId>jmock</artifactId> <version>1.1.0</version> </dependency>
If you think this Maven repository POM file listing for jmock is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:BSD
URL: http://www.jmock.org/license.html.
The jmock-1.1.0 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.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 jmock-1.1.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JUnit | hamcrest-integration 1.3.RC2 Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock. | 27 |
Groovy | groovy 1.0 a powerful and dynamic scripting language for the JVM | 17 |
JUnit | hamcrest-integration 1.3 Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock. | 6 |
The following packages are defined in the jmock-1.1.0.jar
org.jmock org.jmock.builder org.jmock.core org.jmock.core.constraint org.jmock.core.matcher org.jmock.core.stub org.jmock.expectation org.jmock.util
Here is the content of the POM file.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>jmock</groupId>
<artifactId>jmock</artifactId>
<version>1.1.0</version>
<packaging>jar</packaging>
<name>jMock</name>
<url>http://www.jmock.org/</url>
<description>jMock is a library for testing Java code using mock objects</description>
<licenses>
<license>
<name>BSD</name>
<url>http://www.jmock.org/license.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://cvs.jmock.codehaus.org/browse/jmock/jmock</url>
</scm>
<organization>
<name>jMock.org</name>
<url>http://www.jmock.org/</url>
</organization>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
</dependency>
</dependencies>
</project>