Android - 使用 Robotium 进行 UITesting?

发布于 2024-11-16 13:33:39 字数 145 浏览 1 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

分分钟 2024-11-23 13:33:39

Robotium 不了解 Roboguice,但您可以使用任何扩展 ActivityInstrumentationTestCase2 的注入。在每次测试之前,您只需通过获取 Application 并从那里检索注入器来“初始化您的应用程序”。

    YourApplication app = getApplication(); //YourApplication has to extend from RoboApplication
    app.setServiceModuleOverride(yourTestModule); //do this if you want to provide your overrides
    app.getInjector().injectMembers(this);

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 the Application and retrieving the injector from there.

    YourApplication app = getApplication(); //YourApplication has to extend from RoboApplication
    app.setServiceModuleOverride(yourTestModule); //do this if you want to provide your overrides
    app.getInjector().injectMembers(this);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文