1

这是我的build.gradle.kts

import org.jetbrains.kotlin.config.KotlinCompilerVersion

plugins {
    ...
}

android {
    compileSdkVersion(27)

    defaultConfig {
        ...
    }

    buildTypes {
        ...
    }

    sourceSets {
        getByName("main").java.srcDirs("src/main/java", "src/main/kotlin")
        getByName("test").java.srcDirs("src/test/java", "src/test/kotlin")
        getByName("androidTest").java.srcDirs("src/androidTest/java", "src/androidTest/kotlin")
    }

}

tasks.withType<Test> {
    useJUnitPlatform()
}

dependencies {
    implementation(kotlin("stdlib-jdk7", KotlinCompilerVersion.VERSION))
    implementation("com.android.support:appcompat-v7:27.1.1")

    ...

    //Test
    testImplementation("org.junit.jupiter:junit-jupiter-api:5.1.1")
    testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.1.1")

    androidTestImplementation("com.android.support.test:runner:1.0.2")
    androidTestImplementation("com.android.support.test.espresso:espresso-core:3.0.2")
    androidTestImplementation("android.arch.core:core-testing:1.1.1")

    testImplementation("io.kotlintest:kotlintest-runner-junit5:3.1.10")
    testImplementation("io.mockk:mockk:1.8.7")
}

构建它时./gradlew build没有发生错误,但如果我使用文档中的指定代码:

val test by tasks.getting(Test::class) {
    useJUnitPlatform { }
}

我收到以下错误:Task with name 'test' not found in project ':app'.

我的settings.gradle.kts

include(":app")

有谁知道这里发生了什么?奇怪的是 AS 可以建议我自动完成,但在编译时,我得到了这个未解决的参考。

4

1 回答 1

0

看起来你的问题是这个块,

tasks.withType<Test> {
    useJUnitPlatform()
}

如果您不使用test任务,那么您只需删除该代码,该错误就会消失!


编辑:

如果你想使用test任务。在项目级别build.gradle中尝试这样,

tasks.register("test", Test::class) {
    useJUnitPlatform()
}
于 2018-09-18T09:03:15.590 回答