美文网首页
Android ExampleInstrumentedTest(

Android ExampleInstrumentedTest(

作者: Amy木婉清 | 来源:发表于2021-10-27 11:10 被阅读0次

    首先我们先来看一下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

    相关文章

      网友评论

          本文标题:Android ExampleInstrumentedTest(

          本文链接:https://www.haomeiwen.com/subject/dyoualtx.html