The Android test case classes provide a way to *unit-test* a method or methods that have to run in the Android environment. Since they do unit tests, you should be able to test your library code within a larger .apk test harness. One way to do this would be to build a purpose-coded test harness. Other way would be to compile the library code together with one of the apps that uses the library code. In either case, you should then have a .apk that you can test.
If you have some sort of condition that only appears when an app uses the library project, then you have something that's beyond unit testing. The test case classes may or may not help you, since they're not designed for functional testing. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

