File: junitJupiterParallelTest.gradle

package info (click to toggle)
mockito 3.3.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,068 kB
  • sloc: java: 48,664; xml: 48; makefile: 5
file content (15 lines) | stat: -rw-r--r-- 361 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
description = "Tests that require fine tuned parallel settings for JUnit Jupiter (bug #1630)"

apply from: "$rootDir/gradle/dependencies.gradle"

apply plugin: "java"

dependencies {
    testImplementation libraries.junitJupiterApi
    testImplementation project(":junit-jupiter")
    testRuntime libraries.junitJupiterEngine
}

test {
    useJUnitPlatform()
}