什么是仅测试模块中的等效androidTestUtil

时间:2019-03-26 03:59:03

标签: android-gradle android-testing

最初,我在我的应用程序模块中使用Android Test Orchestrator。所以我在build.gradle文件中有这行:

dependencies {
    androidTestUtil "androidx.test:orchestrator...`
    ...
}

但是我现在要移至test-only module。所有androidTestImplementation关键字都变成implementation。但是我应该为androidTestUtil做些什么?它应该变成util吗?

1 个答案:

答案 0 :(得分:2)

根据Android的documentation,它仍应为:

  

androidTestUtil 'androidx.test:orchestrator:x.x.x'


只要确保您更新

  testOptions {
    execution 'ANDROID_TEST_ORCHESTRATOR'
  }

  testOptions {
    execution 'ANDROIDX_TEST_ORCHESTRATOR'
  }

信用:Android Test Orchestrator not working with Android X