开发者

How to run Android JUnit tests from multiple projects in eclipse?

开发者 https://www.devze.com 2023-04-08 09:30 出处:网络
I\'m wondering how to run multiple projects containing Android开发者_运维技巧 JUnit Robotium test from eclipse at once...

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!


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.


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号