1

由于我将 Groovy 转换为 Kotlin DSL gradle,我的单元测试不再工作。我得到错误:

java.lang.RuntimeException: Method get in org.json.JSONObject not mocked. See http://g.co/androidstudio/not-mocked for details.

所以我点击链接并将 testoptions 添加到我的所有 build.gradle.kts 文件中。但是在这之后它仍然不起作用。

我的 (builsSrc) build.gradle.kts 文件:

plugins {
    `kotlin-dsl`
}

repositories {
    google()
    jcenter()
}

我的(应用程序)build.gradle.kts 文件:

plugins {
    id("com.android.library")
    kotlin("android")
    kotlin("android.extensions")
}


android {
    compileSdkVersion(Versions.Android.compileSdkVersion)

    defaultConfig {
        versionCode = Versions.Android.appVersionCode
        versionName = Versions.Android.appVersionName

        minSdkVersion(Versions.Android.minSdkVersion)
        targetSdkVersion(Versions.Android.targetSdkVersion)

        testInstrumentationRunner = Config.Test.instrumentationRunner
    }

    buildTypes {
        getByName("release") {
            isMinifyEnabled = false
            proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
        }
    }

    testOptions {
        unitTests.setReturnDefaultValues(true)
    }
}

dependencies {
    implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar", "*.aar"))))

    implementation(Depends.Kotlin.reflect)
    implementation(Depends.Kotlin.kotlinStdLib)

    testImplementation(Depends.TestLibraries.json)
    testImplementation(Depends.TestLibraries.jUnit)
    androidTestImplementation(Depends.TestLibraries.jUnitRunner)
    androidTestImplementation(Depends.TestLibraries.espressoCore)
}

它不会找我,我错过了什么。有没有人知道如何解决这个问题?

图像方法未模拟

4

2 回答 2

0

我终于设法使用以下方法找到解决方案:

apply(from = "../testOptions.gradle")

其中包含:

android {
    testOptions {
        unitTests.returnDefaultValues = true
    }
}
于 2019-04-01T08:32:05.537 回答
0

以下作品:

  testOptions {
    unitTests.apply {
      isReturnDefaultValues = true
    }
  }

请注意,您需要进行 gradle 同步以获取配置

于 2019-10-03T10:30:47.397 回答