Android - 使用 Robotium 进行 UITesting?
我正在尝试使用 Robotium 来测试我的活动。 我在我的代码中使用 guice 和 roboguice 进行依赖注入。
在运行自动化测试时我需要做什么才能允许注入?或者 Robotium 会为我做这件事吗?
请提供尽可能多的详细信息。 谢谢
I am trying to use robotium to test my Activities.
I used guice and roboguice for Dependency injection all over my code.
Is there anything I have to do to allow Injection while running my automation tests? or is robotium going to do that for me?
Please provide as much details as you can.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Robotium 不了解 Roboguice,但您可以使用任何扩展
ActivityInstrumentationTestCase2
的注入。在每次测试之前,您只需通过获取Application
并从那里检索注入器来“初始化您的应用程序”。Robotium doesn't have any knowledge of Roboguice, but you can use injection with anything that extends
ActivityInstrumentationTestCase2
. Before every test, you just have to "initialize your application" by getting theApplication
and retrieving the injector from there.