Android - JUnit 测试每次测试后都会退出应用程序?
所以我尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用 SingleLaunchActivityTestCase。
Use SingleLaunchActivityTestCase instead.
我不确定 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