EasyMock.
EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism.
Here is the list of declaration for easymock. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.2</version> </dependency>
If you think this Maven repository POM file listing for easymock 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://www.easymock.org/License.html.
The following table lists the most popular artifacts which are depending on easymock-2.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | protobuf-java 2.4.0a Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 18 |
Testing Mock | easymockclassextension 2.2 The EasyMock Class Extension allows to generate Mock Objects for classes | 7 |
Network | protobuf-java 2.5.0 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 128 |
Development | tiles-core 2.0.5 Tiles Core Library, including basic implementation of the APIs. | 13 |
JUnit | hamcrest-integration 1.3.RC2 Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock. | 27 |
Development | tiles-api 2.0.6 Tiles APIs, containing interfaces and classes to interact with Tiles. | 13 |
JSP | tiles-jsp 2.0.6 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 16 |
JSP | tiles-jsp 2.0.4 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 5 |
Development | tiles-api 2.0.5 Tiles APIs, containing interfaces and classes to interact with Tiles. | 13 |
Network | protobuf-java 2.3.0 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 44 |
JSP | tiles-jsp 2.0.5 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 13 |
Network | protobuf-java 2.6.1 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 7 |
Testing Mock | easymockclassextension 2.2.2 The EasyMock Class Extension allows to generate Mock Objects for classes | 7 |
JUnit | hamcrest-integration 1.3 Provides integration between Hamcrest and other testing tools, including JUnit (3 and 4), TestNG, jMock and EasyMock. | 6 |
Network | protobuf-java 2.4.1 Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. | 129 |
Development | tiles-core 2.0.6 Tiles Core Library, including basic implementation of the APIs. | 18 |
Testing Mock | easymockclassextension 2.2.1 The EasyMock Class Extension allows to generate Mock Objects for classes | 12 |
The following packages are defined in the easymock-2.2.jar
org.easymock org.easymock.internal org.easymock.internal.matchers
Here is the content of the POM file.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>2.2</version>
<packaging>jar</packaging>
<name>EasyMock</name>
<url>http://www.easymock.org</url>
<description>EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism</description>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.easymock.org/License.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://cvs.sourceforge.net/viewcvs.py/easymock</url>
</scm>
<dependencies/>
</project>