sdeleuze
03/01/2018, 11:31 AMtest {
useJUnitPlatform()
}
bamboo
03/01/2018, 11:36 AMtasks {
“test”(Test::class) {
useJUnitPlatform()
}
}
sdeleuze
03/01/2018, 11:42 AMwithType<Test> {
useJUnitPlatform()
}
seems to work alsouseJUnitPlatform
is red in IDEA (works fine on command line)bamboo
03/01/2018, 11:45 AMwithType<Test>
solution will enable the JUnit platform for all test tasks so it’s a little different than the original Groovy versionsdeleuze
03/01/2018, 11:46 AMmkobit
03/01/2018, 3:40 PM