Android Studio + Spek интеграция

Я пытаюсь добавить среду тестирования Spek в свой проект Android Studio. Следуя инструкциям здесь, я добавил следующее в мой модуль build.gradle:

testCompile 'org.jetbrains.spek:spek-api:1.1.5'
testCompile 'junit:junit:4.12'
testCompile "org.junit.platform:junit-platform-runner:1.0.0"
testRuntimeOnly 'org.jetbrains.spek:spek-junit-platform-engine:1.1.5'

Затем я прокомментировал мой тест с @RunWith(JUnitPlatform::class)

Тем не менее, когда я пытаюсь запустить тест, я получаю:org.junit.platform.commons.util.PreconditionViolationException: Cannot create Launcher without at least one TestEngine; consider adding an engine implementation JAR to the classpath

Есть идеи, что мне не хватает?

2 ответа

Решение

(Для будущих ссылок)
Для использования Kotlin и Spek + JUnit5 в Android Studio необходимо следующее:

В build.gradle проекта необходимо иметь:

buildscript {
    ext.kotlin_version = '1.2.10'
    ext.JUnit5_version = '1.0.30'

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath "de.mannodermaus.gradle.plugins:android-junit5:$JUnit5_version"
    }
}

В модуле build.gradle необходимо иметь:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: "de.mannodermaus.android-junit5"

android {
    ...
    sourceSets {
        test.java.srcDirs += 'src/test/kotlin'
        androidTest.java.srcDirs += 'src/androidTest/kotlin'
    }
}

project.ext {
    spekVersion = "1.1.5"
}

dependencies {
    ...
    //
    // TESTS
    testImplementation("org.jetbrains.spek:spek-api:$spekVersion") {
        exclude group: "org.jetbrains.kotlin"
    }
    testImplementation("org.jetbrains.spek:spek-junit-platform-engine:$spekVersion") {
        exclude group: "org.junit.platform"
        exclude group: "org.jetbrains.kotlin"
    }
    testImplementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"

    testImplementation junit5.unitTests()
    // see https://github.com/mannodermaus/android-junit5#android-studio-workarounds
    testCompileOnly junit5.unitTestsRuntime()
}

Простой тест Spek

class ExampleSpekTest : Spek({
    val x = 2
    val y = 3

    given("x = $x and y = $y") {
        val sum = x + y

        it("should be that x + y = 5") {
           Assert.assertEquals(5, sum)
        }

        it("should be that x - y = -1") {
            val subtract = x - y
            Assert.assertEquals(-1, subtract)
        }
    }
})

Увидеть
- официальная документация http://spekframework.org/
- официальный плагин для запуска спецификаций из IDE https://github.com/raniejade/spek-idea-plugin
- Тесты с использованием Spek Framework - Стиль BDD против стиля JUnit https://www.youtube.com/watch?v=asDZ_7ZUiX4
- Простая конфигурация Android для Spek и JUnit5 https://gist.github.com/Mugurell/088daf42a4d60240ba6993681e0537a5

Видимо, это не работает хорошо... Я в итоге использовал kotlintest, который гораздо проще интегрировать

Другие вопросы по тегам