EasyMock class extension.
The EasyMock Class Extension allows to generate Mock Objects for classes.
Here is the list of declaration for easymockclassextension. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>2.2</version> </dependency>
If you think this Maven repository POM file listing for easymockclassextension 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 easymockclassextension-2.2 has 2 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 |
---|---|---|
Network | easymock 2.2 EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism | 84 |
The following packages are defined in the easymockclassextension-2.2.jar
org.easymock.classextension org.easymock.classextension.internal
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>2.2</version> <packaging>jar</packaging> <name>EasyMock class extension</name> <url>http://www.easymock.org</url> <description>The EasyMock Class Extension allows to generate Mock Objects for classes</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> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.2</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>2.1_3</version> </dependency> </dependencies> </project>