设置仪表运行器
将相同的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相同.