LocoMike
LocoMike

Reputation: 5656

Is it possible to run/debug tests in Android Studio?

I have created a project in Android Studio, added some instrumentation tests and I'm able to run them on a connected device via ./gradlew connectedCheck. Is it possible to run these tests from Android Studio?

And more importantly, is it possible to debug these tests in Android Studio?

Upvotes: 2

Views: 1946

Answers (2)

Bernd S
Bernd S

Reputation: 1298

Test support is available as of 0.1.8, see other SO answer.

Debugging support is available since 0.1.9.

Upvotes: 4

Siva Velusamy
Siva Velusamy

Reputation: 2489

Testing support is not there, it'll be there in a couple of weeks.

Upvotes: 1

Related Questions