如何在Android中使用Robotium编写测试用例方法

发布于 2024-11-15 11:23:38 字数 166 浏览 5 评论 0原文

我正在为我的应用程序中的一项活动编写一个测试用例类。

该 Activity 类包含 Android 市场中应用程序的许可证检查,并且还会显示 3 秒的启动屏幕。在这里,我想测试该活动是否显示启动画面并使用 Android 中的 Robotium 仪器检查许可证。

所以请告诉我该怎么做。

I am writing a test case class for one of the activity in my application.

That Activity class contains license checking for the application in android market and also displays the splash screen for 3 seconds. Here I would like to test that activity is displaying the splash screen and checking the license using Robotium instrumentation in Android.

So please tell me how to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

或十年 2024-11-22 11:23:38

要测试是否显示启动屏幕,如果您已在设置方法中设置了 Robotium 并将其单独命名,则可以尝试以下操作:

public void testSplash() {
  assertNotNull(solo.getCurrentActivity().findViewById( "the id of the splash" ));
}

public void testLicense() {
  String licence = "my licence";
  assertEquals(licence, (MyActivity) solo.getCurrentActivity().getLicence());
}

To test that your splash screen is shown, you can try this, if you have set up robotium in your setup method, and named it solo:

public void testSplash() {
  assertNotNull(solo.getCurrentActivity().findViewById( "the id of the splash" ));
}

public void testLicense() {
  String licence = "my licence";
  assertEquals(licence, (MyActivity) solo.getCurrentActivity().getLicence());
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文