Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What are good ways to learn Android testing? I'm interested in learning Android testing, I don't actually do TDD but write the tests and code together.

I read all the information at http://developer.android.com/tools/testing/index.html and the 'Android Application Testing Guide' book and understand the basic concepts but there is almost no information or examples out there that I can find.

the book and examples are very basic and showing how to test a pretty simple activity with 2 EditText boxes,

I need to test more complicated stuff such as IntentService, AsyncTask, ResultReceiver, etc.. I'm interested in building my apps in a TDD or almost TDD way.

is there any way I can learn those things (books, blogs, examples, ...) or Android testing is something very uncommon ?

share|improve this question
Take a look at this recent book: leanpub.com/ResponsibleDesignAndroid-Part1. – Ray Tayek Mar 25 at 20:50

1 Answer

You can write JUnit tests for Unit testing. If you want to test the UI, I'd recommend using a framework like Robotium they have lots of examples on their website, and it makes automated UI testing very easy.

I'm not sure about more advanced techniques, but a tool like Robotium coupled with some good unit tests will give you a good start.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.