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
文件下载
文件名 操作
junit-4.6.jar 下载
junit-4.6.pom 下载
junit-4.6-sources.jar 下载
Apache Maven
<dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>4.6</version>
</dependency>
Gradle Groovy
implementation 'junit:junit:4.6'
Gradle Kotlin
implementation("junit:junit:4.6")
Scala SBT
libraryDependencies += "junit" % "junit" % "4.6"
Groovy Grape
@Grapes(
  @Grab(group='junit', module='junit', version='4.6')
)
Apache Ivy
<dependency org="junit" name="junit" rev="4.6" />
Leiningen
[junit/junit "4.6"]
Apache Buildr
'junit:junit:jar:4.6'
本项目依赖
该项目无第三方依赖