Cannot work as a debugger robotium junit test

I think this is a duplicate of c. I can run the Robotium test, but I canโ€™t debug it , but there is no valid answer for it.

I have an application that I can check with a robotium. (Running Android Junit Test runs fine) If I try Debug As Android Junit Test, the application will not start, it seems that the eclipse started running the tests.

Can you tell me the steps to run my test in debug mode (I want to debug the test, not the application)?

0
source share
1 answer

So, there are two requirements to make this work: 1. you need to set the AUT (App Under Test) setting in your workspace 2. AUT should be debuggable = true (manifest file)

my mistake was that since I wanted to debug the test, I did not think that I needed the AUT project either.

0
source

All Articles