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.3</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.3 has 4 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.3 EasyMock provides Mock Objects for interfaces in JUnit tests by generating them on the fly using Java's proxy mechanism | 130 |
Development | objenesis 1.1 A library for instantiating Java objects | 18 |
JUnit | junit 4.4 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. | 301 |
The following table lists the most popular artifacts which are depending on easymockclassextension-2.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JSF | myfaces-api 1.2.8 The public API classes of the Apache MyFaces CORE JSF-1.2 project | 42 |
Parser | warnings 1.0 This plug-in reads the compiler warnings from the console log file and generates a trend report. | 6 |
JSF | myfaces-impl 1.2.9 The private implementation classes of the Apache MyFaces Core JSF/1.2 Implementation | 18 |
Security | jsecurity 0.9.0-RC2 JSecurity is a powerful and flexible open-source Java security framework that cleanly handles authentication, authorization, enterprise session management, single sign-on and cryptography services. | 17 |
JSF | myfaces-impl 1.2.8 The private implementation classes of the Apache MyFaces Core JSF/1.2 Implementation | 19 |
Network | abdera-server 1.0 Atom Publishing Protocol Specification Server-Side Implementation | 8 |
JSF | myfaces-api 1.2.9 The public API classes of the Apache MyFaces CORE JSF-1.2 project | 18 |
JSP | tiles-jsp 2.1.2 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 30 |
The following plugins are used in the easymockclassextension-2.3.jar
The following packages are defined in the easymockclassextension-2.3.jar
org.easymock.classextension org.easymock.classextension.internal org.easymock.classextension.internal.objenesis org.easymock.classextension.internal.objenesis.instantiator org.easymock.classextension.internal.objenesis.instantiator.basic org.easymock.classextension.internal.objenesis.instantiator.gcj org.easymock.classextension.internal.objenesis.instantiator.jrockit org.easymock.classextension.internal.objenesis.instantiator.perc org.easymock.classextension.internal.objenesis.instantiator.sun org.easymock.classextension.internal.objenesis.strategy
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>2.3</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> <connection>scm:cvs:pserver:anonymous@easymock.cvs.sourceforge.net:/cvsroot/easymock:easymockclassextension</connection> <url>http://easymock.cvs.sourceforge.net/easymock/easymockclassextension/</url> </scm> <dependencies> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>2.3</version> </dependency> <dependency> <groupId>cglib</groupId> <artifactId>cglib-nodep</artifactId> <version>2.1_3</version> </dependency> <dependency> <groupId>org.objenesis</groupId> <artifactId>objenesis</artifactId> <scope>provided</scope> <version>1.1</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.4</version> <scope>test</scope> </dependency> </dependencies> <build> <sourceDirectory>${basedir}/src</sourceDirectory> <testSourceDirectory>${basedir}/src-tests</testSourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>2.3</version> </plugin> <plugin> <artifactId>maven-clover-plugin</artifactId> <version>2.4</version> <configuration> <licenseLocation>${basedir}/lib/clover.license</licenseLocation> <jdk>1.5</jdk> </configuration> <executions> <execution> <phase>verify</phase> <configuration> <targetPercentage>100%</targetPercentage> </configuration> <goals> <goal>instrument</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-clover-plugin</artifactId> </plugin> </plugins> </reporting> </project>