jakewharton Espresso Idling Resource 不会导入
jakewharton Espresso Idling Resource won't import
我正在 Android/Kotlin 中使用 okhttp3、mockwebserver 和 retrofit2 编写测试。
我查找的所有内容都告诉我使用 jakewharton idling 资源,但它不会导入到我的项目中。
我直接从 Jake Wharton 那里得到了信息 github
我的截图 build.gradle
- 我能做些什么来解决这个问题吗?
- 是否有合适的替代方法来将这种类型的空闲资源添加到我的测试套件中?
build.gradle
依赖项似乎不再支持 androidTestCompile
。
依赖项应从:
切换
androidTestCompile 'com.jakewharton.espresso:okhttp3-idling-resource:1.0.0'
到
androidTestImplementation 'com.jakewharton.espresso:okhttp3-idling-resource:1.0.0'
我正在 Android/Kotlin 中使用 okhttp3、mockwebserver 和 retrofit2 编写测试。
我查找的所有内容都告诉我使用 jakewharton idling 资源,但它不会导入到我的项目中。
我直接从 Jake Wharton 那里得到了信息 github
我的截图 build.gradle
- 我能做些什么来解决这个问题吗?
- 是否有合适的替代方法来将这种类型的空闲资源添加到我的测试套件中?
build.gradle
依赖项似乎不再支持 androidTestCompile
。
依赖项应从:
切换androidTestCompile 'com.jakewharton.espresso:okhttp3-idling-resource:1.0.0'
到
androidTestImplementation 'com.jakewharton.espresso:okhttp3-idling-resource:1.0.0'