gpt4 book ai didi

android - 如何为 firebase teSTLab 添加 testInstrumentation 环境变量?

转载 作者:行者123 更新时间:2023-11-29 16:33:33 24 4
gpt4 key购买 nike

如果我要在本地运行 espresso 测试并传递环境变量我可以通过添加

defaultConfig {
testInstrumentationRunnerArgument 'USERNAME' 'David'
}

build.gradle 文件

然后我可以调用这个变量

InstrumentationRegistry.getArguments().getString("USERNAME")

但是当我在 firebase teSTLab 上运行它时instrumentationrunner 参数不起作用

最佳答案

这在测试实验室中不受支持。

如果您真的需要这样做,可以通过覆盖测试运行器并使用测试运行器“环境变量”传递这些键值对来解决。

覆盖测试运行器:

public class MyTestRunner extends AndroidJUnitRunner {

public static String USERNAME;

@Override
public void onCreate(Bundle arguments) {
super.onCreate(arguments);

USERNAME = arguments.getString("USERNAME");
}
}

build.gradle 文件中使用 MyTestRunner:

defaultConfig {
testInstrumentationRunner "com.example.myapp.MyTestRunner"
}

使用 gcloud 命令行应用在 Firebase 中开始测试。这是您传递参数的地方:

gcloud firebase test android run \
--type instrumentation \
--app debug/app-debug.apk \
--test androidTest/debug/app-debug-androidTest.apk \
--environment-variables "USERNAME=david" \
--device model=walleye,version=28

关于android - 如何为 firebase teSTLab 添加 testInstrumentation 环境变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53295135/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com