Android Studio:如何在启用Orchestrator的情况下在Firebase中运行测试?

时间:2018-06-18 09:12:22

标签: android firebase android-studio android-testing firebase-test-lab

有没有办法在Android Studio 启用 Android Test Orchestrator的情况下在Firebase测试实验室中运行检测测试?

在我build.gradle我有所有必需的陈述:

android {
  defaultConfig {
   testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
   testInstrumentationRunnerArguments clearPackageData: 'true'
 }

  testOptions {
    execution 'ANDROID_TEST_ORCHESTRATOR'
  }
}

dependencies {
  androidTestImplementation 'com.android.support.test:runner:1.0.2'
  androidTestUtil 'com.android.support.test:orchestrator:1.0.2'
}

当我在自己的物理设备上运行测试时,Orchestrator正在运行。

我能够在Android Studio中创建运行/调试配置以在Firebase测试实验室中运行测试,并且它们运行成功,但没有Orchestrator。是否可以选择在Android Studio中启用Orchestrator,以便它也能在Firebase运行中运行?

0 个答案:

没有答案