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

2

1

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!

Prosimian answered 23/9, 2011 at 7:40 Comment(0)
P
1

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.

Pierson answered 27/10, 2011 at 20:40 Comment(0)
T
1

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.

Townsville answered 2/12, 2013 at 9:25 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.