如何在 Eclipse 中从多个项目运行 Android JUnit 测试?

发布于 2024-12-06 06:12:53 字数 88 浏览 1 评论 0原文

我想知道如何同时从 eclipse 运行包含 Android JUnit Robotium 测试的多个项目... 我希望有人能提供帮助。

多谢!

I'm wondering how to run multiple projects containing Android JUnit Robotium test from eclipse at once...
I hope someone could help.

Thanks a lot!

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

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

发布评论

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

评论(2

浅语花开 2024-12-13 06:12:53

我也陷入了类似的境地。我使用命令行来运行我的测试。您可以使用以下命令

对于单个测试

adb shell am instrument -e your class -w your package/android.test.InstrumentationTestRunner

对于所有测试

adb shell am instrument -w your package/android.test.InstrumentationTestRunner

希望它有所帮助。

I was caught up in the similar situation. I used command line to run my test. You can use the following commands

For a single Test

adb shell am instrument -e your class -w your package/android.test.InstrumentationTestRunner

For all your Tests

adb shell am instrument -w your package/android.test.InstrumentationTestRunner

Hope it helps.

染年凉城似染瑾 2024-12-13 06:12:53

您可以使用开源 Classpath Suite 跨多个项目运行 JUnit 测试。

创建一个 Eclipse 项目,其中包含对所有要测试的项目的依赖项。
编写套件:

@RunWith(ClasspathSuite.class)
public class MySuite

看看这篇文章: Roger Rabbit - 跨多个项目的 JUnit 测试运行器,它包括分步示例和代码示例。

You can run JUnit tests across multiple projects using the open source Classpath Suite.

Create an Eclipse project which contains a dependency on all the projects you want to test.
Write a suite:

@RunWith(ClasspathSuite.class)
public class MySuite

Take a look on this article: Roger Rabbit - JUnit Tests Runner Across Multiple Projects, it includes a step by step example and a code sample.

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