Ricardo Cristian Ramirez
Ricardo Cristian Ramirez

Reputation: 1234

Testing non-activity android applications

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

Answers (1)

CommonsWare
CommonsWare

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

Related Questions