junit

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.
http://junit.org
Common Public License Version 1.0
JUnit
Files download
File Operation
junit-4.4.jar download
junit-4.4.pom download
junit-4.4-sources.jar download
Apache Maven
<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.4</version>
</dependency>
Gradle Groovy
implementation 'junit:junit:4.4'
Gradle Kotlin
implementation("junit:junit:4.4")
Scala SBT
libraryDependencies += "junit" % "junit" % "4.4"
Groovy Grape
@Grapes(
  @Grab(group='junit', module='junit', version='4.4')
)
Apache Ivy
<dependency org="junit" name="junit" rev="4.4" />
Leiningen
[junit/junit "4.4"]
Apache Buildr
'junit:junit:jar:4.4'
Dependencies
The project has no third-party dependencies