views:

419

answers:

1

Anyone know of any good resources to get me started with test driven development on the Android platform?

+10  A: 

Diego Torres Milano's blog is a good resource for learning about test driven development on the Android platform.

I found his presentation at Droidcon to be a good introduction: Testing on Android

Here are a few highlights from his blog:

Also check out Robotium, a great libray for GUI testing (It's like Selenium, but for Android)

Sarp Centel