Download junit-4.2.jar file - Jar j

Jar examples for j:junit

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.

You can download jar file junit 4.2 in this page.

License

The Apache Software License, Version 2.0

Build File

You can use the following script to add junit-4.2.jar to your project.

<dependency>
   <groupId>junit</groupId>
   <artifactId>junit</artifactId>
   <version>4.2</version>
</dependency>
compile group: 'junit', name: 'junit', version: '4.2'
libraryDependencies += "junit" % "junit" % "4.2"
<dependency org="junit" name="junit" rev="4.2"/>
@Grapes(@Grab(group='junit', module='junit', version='4.2'))
'junit:junit:jar:4.2'

Download

Click the following link to download the jar file.

junit-4.2-javadoc.jar
junit-4.2-sources.jar
junit-4.2.jar
junit-4.2.pom



Related Tutorials