t

testng

TestNG is a testing framework inspired from JUnit and NUnit but introducing some new functionalities that make it more powerful and easier to use.
http://testng.org
Apache License, Version 2.0
Files download
File Operation
testng-5.8.pom download
testng-5.8-sources.jar download
Apache Maven
<dependency>
  <groupId>org.testng</groupId>
  <artifactId>testng</artifactId>
  <version>5.8</version>
</dependency>
Gradle Groovy
implementation 'org.testng:testng:5.8'
Gradle Kotlin
implementation("org.testng:testng:5.8")
Scala SBT
libraryDependencies += "org.testng" % "testng" % "5.8"
Groovy Grape
@Grapes(
  @Grab(group='org.testng', module='testng', version='5.8')
)
Apache Ivy
<dependency org="org.testng" name="testng" rev="5.8" />
Leiningen
[org.testng/testng "5.8"]
Apache Buildr
'org.testng:testng:jar:5.8'