Android:将参数传递给测试用例
我正在使用“am Instrument”命令来运行测试用例。
如何将参数传递给测试用例并使用“am Instrument”命令运行它?
I am using "am instrument" command to run a test case.
How do I pass arguments to testcase and run it using "am instrument" command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道有什么方法可以通过 am 仪器将命令行参数传递给测试用例。
您需要将哪些参数传递给测试用例?为什么不能在测试用例本身或资源文件中定义这些参数?
如果您需要对测试仪器进行细粒度控制,您可能需要创建您自己的 InstrumentationTestRunner 版本。
I don't know of any way to pass command line arguments to a test case via am instrument.
What arguments do you need to pass to the test case? Why can't these arguments be defined in the testcase itself or in a resource file?
If you need fine grained control over your test instrumentation, you may want to create your own version of InstrumentationTestRunner.