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.3</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 easymock-2.3 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 4.3.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. | 155 |
The following table lists the most popular artifacts which are depending on easymock-2.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
ORM | ormlite-core 3.3 Lightweight Object Relational Model (ORM) for persisting objects to SQL databases. | 5 |
Spring | spring-retry 1.0.3.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 11 |
Service | ognl 3.0.5 OGNL - Object Graph Navigation Library | 5 |
JSF | myfaces-api 1.2.8 The public API classes of the Apache MyFaces CORE JSF-1.2 project | 42 |
Spring | spring-retry 1.1.1.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 6 |
Spring | spring-retry 1.0.2.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 8 |
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 |
Spring | spring-retry 1.1.0.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 10 |
Testing Mock | easymockclassextension 2.3 The EasyMock Class Extension allows to generate Mock Objects for classes | 78 |
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 |
Service | ognl 3.0.4 OGNL - Object Graph Navigation Library | 9 |
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 |
Service | ognl 3.0.8 OGNL - Object Graph Navigation Library | 49 |
ORM | ormlite-core 3.2 Lightweight Object Relational Model (ORM) for persisting objects to SQL databases. | 5 |
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 easymock-2.3.jar
The following packages are defined in the easymock-2.3.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.3</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>
<connection>scm:cvs:pserver:easymock.cvs.sourceforge.net:/cvsroot/easymock:easymock</connection>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.3.1</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>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<excludePackageNames>*.internal</excludePackageNames>
<bottom><![CDATA[<i>Copyright © 2001-2007 OFFIS, Tammo Freese. This documentation is provided under the terms of the MIT licence.</i>]]></bottom>
</configuration>
</plugin>
</plugins>
</reporting>
</project>