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>3.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.
The following plugins are used in the easymockclassextension-3.2.jar
The following packages are defined in the easymockclassextension-3.2.jar
org.easymock.classextension org.easymock.classextension.internal
Here is the content of the POM file.
<?xml version="1.0" encoding="ISO-8859-1"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.easymock</groupId> <artifactId>easymock-parent</artifactId> <version>3.2</version> </parent> <artifactId>easymockclassextension</artifactId> <packaging>jar</packaging> <name>EasyMock Class extension</name> <description>The EasyMock Class Extension allows to generate Mock Objects for classes</description> <inceptionYear>2003</inceptionYear> <organization> <name>OFFIS, Henri Tremblay</name> </organization> <dependencies> <dependency> <groupId>org.easymock</groupId> <artifactId>easymock</artifactId> <version>${project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <executions> <execution> <phase>generate-test-sources</phase> <goals> <goal>add-test-source</goal> </goals> <configuration> <sources> <source>${basedir}/src/samples/java</source> </sources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <configuration> <instructions> <Export-Package>org.easymock.classextension.internal.*;poweruser=true, org.easymock.classextension</Export-Package> <Import-Package>org.easymock,org.easymock.classextension,org.easymock.classextension.internal;poweruser=true,org.easymock.internal;poweruser=true,org.objenesis</Import-Package> </instructions> </configuration> <executions> <execution> <id>bundle-manifest</id> <phase>prepare-package</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>fullBuild</id> <build> <plugins> <plugin> <groupId>com.atlassian.maven.plugins</groupId> <artifactId>maven-clover2-plugin</artifactId> <configuration> <excludes> <exclude>**/org/easymock/classextension/samples/*.java</exclude> </excludes> </configuration> <executions> <execution> <phase>verify</phase> <goals> <goal>instrument</goal> <goal>clover</goal> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>com.mycila.maven-license-plugin</groupId> <artifactId>maven-license-plugin</artifactId> </plugin> </plugins> </build> </profile> <profile> <id>deployBuild</id> <build> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>easymock-bundle</id> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>