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