Как я могу запустить тесты kotlintest с Gradle?
Тесты kotlintest прекрасно работают при запуске из Intellij, но когда я пытаюсь запустить их с помощью команды задачи gradle test, только мои обычные тесты JUnit обнаруживаются и запускаются.
Код котлинтеста:
import io.kotlintest.matchers.shouldBe
import io.kotlintest.specs.StringSpec
class HelloKotlinTest : StringSpec() {
init {
println("Start Kotlin UnitTest")
"length should return size of string" {
"hello".length shouldBe 5
}
}
}
build.gradle:
apply plugin: 'org.junit.platform.gradle.plugin'
buildscript {
ext.kotlinVersion = '1.1.3'
ext.junitPlatformVersion = '1.0.0-M4'
repositories {
maven { url 'http://nexus.acompany.ch/content/groups/public' }
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
classpath "org.junit.platform:junit-platform-gradle-plugin:$junitPlatformVersion"
}
}
sourceSets {
main.kotlin.srcDirs += 'src/main/kotlin'
test.kotlin.srcDirs += 'test/main/kotlin'
}
(...)
dependencies {
// Kotlin
compile group: 'org.jetbrains.kotlin', name: 'kotlin-stdlib-jre8', version: kotlinVersion
// Kotlin Test
testCompile group: 'io.kotlintest', name: 'kotlintest', version: kotlinTestVersion
// JUnit 5
testCompile group: 'org.junit.jupiter', name: 'junit-jupiter-api', version: junitJupiterVersion
testRuntime group: 'org.junit.jupiter', name: 'junit-jupiter-engine', version: junitJupiterVersion
}
3 ответа
В KotlinTest 3.1.x вам больше не нужно использовать Junit4. Он полностью совместим с JUnit 5. Таким образом, ответ на ваш вопрос заключается в обновлении до версии 3.1.x.
Вам нужно добавить useJUnitPlatform()
в тестовый блок в вашем build.gradle.
Вам нужно добавить testCompile 'io.kotlintest:kotlintest-runner-junit5:3.1.9'
к вашим зависимостям.
Например.
dependencies {
testCompile 'io.kotlintest:kotlintest-runner-junit5:3.1.9'
}
test {
useJUnitPlatform()
// show standard out and standard error of the test JVM(s) on the console
testLogging.showStandardStreams = true
testLogging {
events "PASSED", "FAILED", "SKIPPED", "STANDARD_OUT", "STANDARD_ERROR"
}
}
"Решением" было переключиться обратно на JUnit 4.
kotlintest не был построен с учетом JUnit 5 и не имеет собственного junit-движка.
(Примечание. Должна быть возможность указать JUnit 5 использовать движок JUnit 4 для kotlintest. Если кто-нибудь знает, как это сделать, добавьте решение здесь.)
Для запуска ваших тестов kotlintest с Junit5 вам нужно использовать KTestRunner.
@RunWith(KTestJUnitRunner::class)
class MyTest : FunSpec({
test("A test") {
1 + 1 shouldBe 2
}
})
Например, со следующей настройкой Gradle.
dependencies {
testCompile("io.kotlintest:kotlintest:${kotlinTestVersion}")
testCompile("org.junit.jupiter:junit-jupiter-engine:${junitJupiterVersion}")
}