Can anyone tell me how can I write Robotium tests for non activity classes?
I have seen lot of example for activity classes but not for non activity classes.
Is it possible?
Thank You.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Robotium is mostly useful for interacting with your app in a test case. These interactions are usually with activities.
If you want to test other classes, there’s no need to use Robotium. You might look into Robolectric for running tests in the JVM on your computer.