Android - JUnit 测试每次测试后都会退出应用程序?

发布于 2024-12-20 08:49:12 字数 247 浏览 4 评论 0原文

所以我尝试使用 Robotium for Android 编写自动化测试 我有一个与我的 LoginPage 相关的测试套件,问题是每次测试之前和之后都会调用 setUp 和tearDown,因此它会在每个测试用例上关闭并打开应用程序。

是否有可能以某种方式避免这种情况,以便为每个测试套件调用一次设置和拆卸?

编辑:

我正在使用 ActivityInstrumentationTestCase2

So I am trying to write automation test using Robotium for Android
I have a test suite related to my LoginPage, the problem is that setUp and tearDown get called beforfe and after every test, so it closes and opens the app on every single test case.

Is it possible to somehow avoid this, so that setup and tear down get called once for every test suit?

EDIT:

I am using ActivityInstrumentationTestCase2

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

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

发布评论

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

评论(2

腹黑女流氓 2024-12-27 08:49:12

请改用 SingleLaunchActivityTestCase。

Use SingleLaunchActivityTestCase instead.

入画浅相思 2024-12-27 08:49:12

我不确定 Robotium,但 junit 有 @BeforeClass 和 @AfterClass 注释,您可以将其应用于方法,以便在测试套件实例化之前或之后仅调用一次。请在此处查看更多信息:

http://junit.sourceforge.net/doc/faq/ faq.htm#organize_3

I'm not sure about Robotium, but junit has @BeforeClass and @AfterClass annotations you can apply to a method such that it gets called only once before or after instantiation of the test suite. See more info here:

http://junit.sourceforge.net/doc/faq/faq.htm#organize_3

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文