snowe
01/31/2019, 1:50 AMraniejade
01/31/2019, 1:51 AMorg.junit.platform:junit-platform-engine
in your classpath?snowe
01/31/2019, 1:57 AMsnowe
01/31/2019, 1:57 AMsnowe
01/31/2019, 1:57 AMraniejade
01/31/2019, 1:59 AMtest {
useJUnitPlatform {
includeEngines 'spek2'
}
}
should add it to the test classpath.snowe
01/31/2019, 2:00 AMsnowe
01/31/2019, 2:00 AMsnowe
01/31/2019, 2:01 AMNikky
01/31/2019, 2:21 AM// SPEK
repositories {
maven(url = "<https://dl.bintray.com/spekframework/spek-dev>")
}
val cleanTest by tasks.getting(Delete::class)
tasks.withType<Test> {
useJUnitPlatform {
includeEngines("spek2")
}
dependsOn(cleanTest)
}
hopefully it helps figure out the diffNikky
01/31/2019, 2:24 AMtestImplementation(group = "org.spekframework.spek2", name = "spek-dsl-jvm", version = "2.0.0-rc.1")
testImplementation(group = "org.spekframework.spek2", name = "spek-runner-junit5", version = "2.0.0-rc.1")
testImplementation(group = "org.junit.platform", name = "junit-platform-engine", version = "1.3.0-RC1")
snowe
01/31/2019, 2:37 AMraniejade
01/31/2019, 3:26 AMraniejade
01/31/2019, 3:26 AM