File: testng-asserts-build.gradle.kts

package info (click to toggle)
testng7 7.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 12,188 kB
  • sloc: java: 95,175; xml: 2,343; javascript: 162; sh: 146; makefile: 7
file content (14 lines) | stat: -rw-r--r-- 343 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plugins {
    id("testng.java-library")
}

dependencies {
    implementation(projects.testngCollections) {
        because("Lists.newArrayList")
    }

    testImplementation("org.testng:testng:7.3.0") {
        because("core depends on assertions and we need testng to test assertions")
    }
    testImplementation(projects.testngTestKit)
}