[android-developers] Re: Testing several projects with a single test project

2010-08-30 Thread A. Elk
The Android instrumentation-based testing framework focuses on unit testing and component-level functional testing. It's not meant to be a full multi-application test system. You can't test an activity and the content provider it uses in the same test case, nor can you test what happens when the

[android-developers] Re: Testing several projects with a single test project

2010-08-25 Thread A. Elk
You can make one test package that is capable of testing several applications, but it can only test one app at a time. For each new app you want to test, you have to update AndroidManifest.xml to point to the new target app, re-build the test package, and re-install it. What is your use case? Do