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.8</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.8. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | remoting 1.333 Contains the bootstrap code to bridge separate JVMs into a single semi-shared space. Reusable outside Hudson. | 7 |
XML Parser | stax-ex 1.7 Extensions to JSR-173 StAX API. | 19 |
Build | nexus 0.0.2 shaded jar that gets around some class loading issues in HUdson versions prior to 1.316 | 6 |
XML Parser | stax-ex 1.4 Extensions to JSR-173 StAX API. | 9 |
XML | streambuffer 1.5.1 Stream based representation for XML infoset | 10 |
XML Parser | stax-ex 1.6 Extensions to JSR-173 StAX API. | 15 |
Data Structure | commons-jxpath 1.2 A package of Java utility methods for accessing and modifying object properties | 16 |
Chart | jfreechart 1.0.0 JFreeChart is a class library, written in Java, for generating charts. Utilising the Java2D APIs, it currently supports bar charts, pie charts, line charts, XY-plots and time series plots. | 35 |
XML Parser | stax-ex 1.2 Extensions to JSR-173 StAX API. | 28 |
Spring | jaxws-spring 1.8 Configure JAX-WS with Spring | 16 |
XML Parser | stax-ex 1.7.1 Extensions to JSR-173 StAX API. | 13 |
Library | codemodel 2.0 The core functionality of the CodeModel java source code generation library | 5 |
XML | streambuffer 1.5 Stream based representation for XML infoset | 6 |
XML | streambuffer 1.4 Stream based representation for XML infoset | 29 |
The following packages are defined in the junit-3.8.jar
junit.awtui junit.extensions junit.framework junit.runner junit.swingui junit.textui
Here is the content of the POM file.
<project> <modelVersion>4.0.0</modelVersion> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8</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>