views:

42

answers:

1

Is there a way to run unit tests for Android from Eclipse in a way that will instrument the code and measure test code coverage?

I'm looking for a simple way to find out which parts of my application aren't tested yet, fix the test cases and see if that helped.

+1  A: 

Check out EclEmma, a popular coverage tool for Eclipse: http://www.eclemma.org/

Fabian Steeg