首先我们先来看一下Android Studio中单元测试的所在位置
image.png
有时候在单元测试类中会报如下错误:
image.png
解决方式如下:
在相应的gradle中添加依赖
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
此时ExampleInstrumentedTest中还会有一个问题,如下图
image.png
我们将其修改如下即可:
image.png
网友评论