Test framework dependencies
Last updated
Was this helpful?
Was this helpful?
<dependencies>
[...]
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
[...]
</dependencies><dependencies>
[...]
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.9.1</version>
<scope>test</scope>
</dependency>
[...]
</dependencies><dependencies>
[...]
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.9.8</version>
<scope>test</scope>
</dependency>
[...]
</dependencies> repositories {
mavenCentral()
} dependencies {
testCompile group: 'junit', name: 'junit', version: '4.13.2'
} dependencies {
testCompile("junit:junit:4.13.2")
} dependencies {
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.8.0'
} dependencies {
testCompile("org.junit.jupiter:junit-jupiter:5.8.0")
} dependencies {
testCompile group: 'org.testng', name: 'testng', version: '7.8.0'
} dependencies {
testCompile("org.testng:testng:7.8.0")
}