composite-unittest.
Unit testing infrastructure.
Here is the list of declaration for composite-unittest. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-unittest</artifactId> <version>2.4</version> </dependency>
If you think this Maven repository POM file listing for composite-unittest is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
The following table lists the most popular artifacts which are depending on composite-unittest-2.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE | common-jackson 1.7 Jackson dependencies and helper utilities | 15 |
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>nz.ac.auckland.groupapps.parent</groupId> <artifactId>parent-groupapps-central</artifactId> <version>1.1</version> </parent> <groupId>nz.ac.auckland.composite</groupId> <artifactId>composite-unittest</artifactId> <version>2.4</version> <packaging>jar</packaging> <name>composite-unittest</name> <description>Unit testing infrastructure</description> <properties> <junit.version>4.11</junit.version> </properties> <scm> <url>https://github.com/uoa-group-applications/composite-unittest</url> <connection>scm:git:https://github.com/uoa-group-applications/composite-unittest.git</connection> <developerConnection>scm:git:git@github.com:uoa-group-applications/composite-unittest.git</developerConnection> <tag>composite-unittest-2.4</tag> </scm> <dependencies> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>[1.9.5]</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>[${junit.version}]</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit-dep</artifactId> <version>[${junit.version}]</version> </dependency> <dependency> <groupId>org.easytesting</groupId> <artifactId>fest-assert</artifactId> <version>[1.4]</version> </dependency> </dependencies> </project>