JUnit-Interface.
An implementation of sbt's test interface for JUnit 4.
Here is the list of declaration for junit-interface. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency>
<groupId>com.novocode</groupId>
<artifactId>junit-interface</artifactId>
<version>0.11</version>
</dependency>
If you think this Maven repository POM file listing for junit-interface is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Two-clause BSD-style license
URL: http://github.com/sbt/junit-interface/blob/master/LICENSE.txt.
The junit-interface-0.11 has 2 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.11 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. | 2031 |
JUnit | test-interface 1.0 Uniform test interface to Scala/Java test frameworks (specs, ScalaCheck, ScalaTest, JUnit and other) | 112 |
The following packages are defined in the junit-interface-0.11.jar
com.novocode.junit
Here is the content of the POM file.
<?xml version='1.0' encoding='UTF-8'?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"> <modelVersion>4.0.0</modelVersion> <groupId>com.novocode</groupId> <artifactId>junit-interface</artifactId> <packaging>jar</packaging> <description>An implementation of sbt's test interface for JUnit 4</description> <url>http://github.com/sbt/junit-interface/</url> <version>0.11</version> <licenses> <license> <name>Two-clause BSD-style license</name> <url>http://github.com/sbt/junit-interface/blob/master/LICENSE.txt</url> <distribution>repo</distribution> </license> </licenses> <name>JUnit-Interface</name> <inceptionYear>2009</inceptionYear> <organization> <name>com.novocode</name> <url>http://github.com/sbt/junit-interface/</url> </organization> <scm> <url>git@github.com:sbt/junit-interface.git/</url> <connection>scm:git:git@github.com:sbt/junit-interface.git</connection> </scm> <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <dependency> <groupId>org.scala-sbt</groupId> <artifactId>test-interface</artifactId> <version>1.0</version> </dependency> </dependencies> </project>