当前位置:  开发笔记 > 编程语言 > 正文

使用Espresso进行测试时,<package>中未找到任何测试

如何解决《使用Espresso进行测试时,<package>中未找到任何测试》经验,为你挑选了1个好方法。



1> albodelu..:

设置仪表运行器

将相同的build.gradle文件添加到android.defaultConfig中的以下行:testInstrumentationRunner"android.support.test.runner.AndroidJUnitRunner"

apply plugin: 'com.android.application'

android {
    ...

    defaultConfig {
        ...

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
}

dependencies {
    // App's dependencies, including test
    compile 'com.android.support:support-annotations:23.0.1'

    ...
}

我从来没有使用过咖啡意图,但也许你需要这个喜欢这里:

使用Espresso-Intents时,请使用IntentsTestRule而不是ActivityTestRule.IntentsTestRule可以在功能UI测试中轻松使用Espresso-Intents API.此类是ActivityTestRule的扩展,它在每次使用@Test注释的测试之前初始化Espresso-Intents,并在每次测试运行后释放Espresso-Intents.每次测试后活动都将终止,此规则的使用方式与ActivityTestRule相同.

推荐阅读
U友50081205_653
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有