Reputation: 1234
Monkey is used to test applications with activities. Is there a way to make automated tests like monkey for non-activity applications?
Upvotes: 0
Views: 117
Reputation: 1007554
Usually, you use JUnit for that.
Also, bear in mind that nearly every application needs an activity, if you want the application to be usable on Android 3.1+. The exception might be some sort of plugin to some other app.
Upvotes: 2