This package provides two test runners - one for integration testing (initialises spring, loads ebean and system properties) and one for unit testing (loads only properties).
Here is the list of declaration for common-testrunner. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>nz.ac.auckland.common</groupId> <artifactId>common-testrunner</artifactId> <version>1.3</version> </dependency>
If you think this Maven repository POM file listing for common-testrunner is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Here is the content of the POM file.
<?xml version="1.0"?> <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>nz.ac.auckland.groupapps.parent</groupId> <artifactId>parent-java-groupapps-central</artifactId> <version>1.1</version> </parent> <groupId>nz.ac.auckland.common</groupId> <artifactId>common-testrunner</artifactId> <packaging>jar</packaging> <version>1.3</version> <description> This package provides two test runners - one for integration testing (initialises spring, loads ebean and system properties) and one for unit testing (loads only properties) </description> <scm> <url>https://github.com/uoa-group-applications/common-jetty-testrunner</url> <connection>scm:git:https://github.com/uoa-group-applications/common-testrunner.git</connection> <developerConnection>scm:git:git@github.com:uoa-group-applications/common-testrunner.git</developerConnection> <tag>common-testrunner-1.3</tag> </scm> <dependencies> <dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-spring-test</artifactId> <version>[5,)</version> </dependency> <dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-logging-deploy</artifactId> <version>[3,)</version> </dependency> <dependency> <groupId>nz.ac.auckland.common</groupId> <artifactId>common-scanner</artifactId> <version>[1.6,)</version> </dependency> <dependency> <groupId>nz.ac.auckland.common</groupId> <artifactId>common-agent-loader</artifactId> <version>[1.3,)</version> </dependency> </dependencies> </project>