Android Maven 项目中的实现 Robotium
我使用 android-quickstart-archetype 创建了 Android Maven 项目 ( https://github .com/akquinet/android-archetypes/wiki/android-quickstart-archetype )
我需要使用 Robotium ( http://code.google.com/p/robotium/ ) GUI 单元测试库。
我在 pom.xml 中添加了依赖项。
我如何在我的项目中实现这个库。有人可以帮助我吗?
I created Android Maven Project with android-quickstart-archetype ( https://github.com/akquinet/android-archetypes/wiki/android-quickstart-archetype )
I need to use Robotium ( http://code.google.com/p/robotium/ ) GUI Unit testing library.
I added dependencies in pom.xml.
How can i implement this library in my project. Can anybody helps me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 Android Maven 项目中实现 Robotium,您需要:
在 pom.xml 中添加依赖项。您可以在此处获取依赖项: http://code.google.com/p/robotium/wiki /Maven
使用 android-with-test 原型。 https://github.com/akquinet/android-archetypes/wiki /android-with-test-archetype
To implement Robotium in Android Maven project you need to:
Add dependency in pom.xml. Dependensy you can get here: http://code.google.com/p/robotium/wiki/Maven
Use android-with-test archetype. https://github.com/akquinet/android-archetypes/wiki/android-with-test-archetype
来自链接:
基本上,要让库在项目中运行,您只需将 jar 添加到类路径即可。
From the link:
Basically, to get the library running in your project, you simply need to add the jar to the classpath.