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>4.6</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-4.6. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Servlet | tiles-servlet 2.2.2 Tiles servlet support, to enable use of Tiles inside a Servlet environment. | 21 |
Virtual Machine | jamm 0.2.5 Jamm provides MemoryMeter, a java agent to measure actual object memory use including JVM overhead. | 32 |
Library | supplier-core 1.0.3 The Supplier Plugin provides a simple way for plugins to provide data access points to their own APIs that can be used across multiple other plugin, such as the Reporting Plugin, Linking and Scaffolding, for example. | 8 |
Development | tiles-extras 2.2.2 Extras for Tiles, including non-standard, non-generic, non-identifiable components that may be useful for Tiles users. | 16 |
Network | netty 3.1.5.GA The Netty project is an effort to provide an asynchronous event-driven network application framework and tools for rapid development of maintainable high performance and high scalability protocol servers and clients. In other words, Netty is a NIO client server framework which enab... | 6 |
Virtual Machine | jamm 0.2.2 Jamm provides MemoryMeter, a java agent to measure actual object memory use including JVM overhead. | 6 |
Network | easymock 2.5.1 EasyMock provides an easy way to create Mock Objects for interfaces by generating them on the fly using Java's proxy mechanism | 40 |
Testing | analysis-test 1.0 This plug-in provides test utilities for the static code analysis plug-ins. | 6 |
Servlet | tiles-servlet-wildcard 2.2.2 Tiles Wildcard file loading in Servlets: Allows to load resources using wildcards. | 66 |
Testing | continuous-testing-toolkit 1.0 Supporting classes that facilitate continuous testing via Infinitest | 10 |
Library | supplier-core 1.0.2 The Supplier Plugin provides a simple way for plugins to provide data access points to their own APIs that can be used across multiple other plugin, such as the Reporting Plugin, Linking and Scaffolding, for example. | 5 |
Development | tiles-el 2.2.2 Tiles EL (Expression Language) support: Classes and tag libraries to use EL as an expression language in attribute expressions. | 16 |
Development | tiles-core 2.2.2 Tiles Core Library, including basic implementation of the APIs. | 21 |
Development | tiles-api 2.2.2 Tiles APIs, containing interfaces and classes to interact with Tiles. | 18 |
Testing | analysis-core 1.0 This plug-in provides utilities for the static code analysis plug-ins. | 6 |
Development | tiles-template 2.2.2 Common code for integration of Tiles for different templating technologies. | 5 |
JSP | tiles-jsp 2.2.2 Tiles JSP support: Classes and tag libraries to use Tiles in a JSP environment. | 21 |
OSGi | org.apache.felix.configadmin 1.4.0 Implementation of the OSGi Configuration Admin Service Specification 1.4 | 5 |
The following packages are defined in the junit-4.6.jar
junit.extensions junit.framework junit.runner junit.textui org.hamcrest org.hamcrest.core org.hamcrest.internal org.junit org.junit.experimental org.junit.experimental.max org.junit.experimental.results org.junit.experimental.runners org.junit.experimental.theories org.junit.experimental.theories.internal org.junit.experimental.theories.suppliers org.junit.internal org.junit.internal.builders org.junit.internal.matchers org.junit.internal.requests org.junit.internal.runners org.junit.internal.runners.model org.junit.internal.runners.statements org.junit.matchers org.junit.runner org.junit.runner.manipulation org.junit.runner.notification org.junit.runners org.junit.runners.model
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> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.6</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://github.com/KentBeck/junit/tree/master</url> </scm> <dependencies> <!-- this dependency is included in the jar, see MAVENUPLOAD-1651 <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>1.1</version> </dependency> --> </dependencies> </project>