JUnit.
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..
Here is the list of declaration for junit. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> </dependency>
If you think this Maven repository POM file listing for junit is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Common Public License Version 1.0
URL: http://www.opensource.org/licenses/cpl1.0.txt.
The following table lists the most popular artifacts which are depending on junit-3.7. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Data Structure | commons-modeler 2.0 Commons Modeler | 5 |
Log | commons-logging 1.0.3 Commons Logging | 69 |
Log | commons-logging 1.0.4 Commons Logging is a thin adapter allowing configurable bridging to other, well known logging systems. | 273 |
Data Structure | commons-lang 2.0 Commons.Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang. | 26 |
Data Structure | commons-discovery 0.4 Commons Discovery | 299 |
XML | commons-digester 1.5 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 8 |
Data Structure | commons-beanutils 1.6.1 Java Bean Utililities | 7 |
Console | commons-cli 1.0 Commons CLI provides a simple API for working with the command line arguments and options. | 131 |
Data Structure | commons-collections 2.1 Commons Collections | 44 |
XML | commons-digester 1.4.1 The Digester package lets you configure an XML->Java object mapping module which triggers certain actions called rules whenever a particular pattern of nested XML elements is recognized. | 31 |
Log | commons-logging 1.0.2 Commons Logging | 20 |
Data Structure | commons-beanutils 1.6 Java Bean Utililities | 38 |
Data Structure | commons-modeler 1.1 Commons Modeler | 5 |
Data Structure | commons-discovery 0.2 Commons Discovery | 30 |
The following packages are defined in the junit-3.7.jar
junit.awtui junit.extensions junit.framework junit.runner junit.swingui junit.textui junit.ui
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.7</version> <name>JUnit</name> <url>http://junit.org</url> <description> 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. </description> <organization> <name>JUnit</name> <url>http://www.junit.org</url> </organization> <licenses> <license> <name>Common Public License Version 1.0</name> <url>http://www.opensource.org/licenses/cpl1.0.txt</url> </license> </licenses> <scm> <url>http://junit.cvs.sourceforge.net/junit/</url> </scm> <dependencies> </dependencies> </project>