Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 kotlin 中使用 mockk 库,在测试中,我有以下异常:
java.lang.RuntimeException: Method getStackTraceString in android.util.Log not mocked. See http://g.co/androidstudio/not-mocked for details.
我找不到解决方案。
你必须添加
testOptions { unitTests.returnDefaultValues = true }
在android您的build.gradle文件中的部分。它将模拟对 Android 平台的一些调用。请注意,它只返回默认值。
android
build.gradle
在新的 gradle 插件中,这个属性被重命名为isReturnDefaultValues.
isReturnDefaultValues