My main project is an android library. I have created a test project with some unit test in it. the tests run fine, but I am struggling to get the test coverage. When I generate the coverage report, I only get the coverage of the tests cases, but not of the library. So it gives me almost 100% because 100% of the test are running. but that doesn't help me to tell what part of the library has been tested.
This is how I do it at the moment :
0) my project looks like this:
myLibraryProject <- this is my android library project
myLibraryProject/tests <- this is my android test project
1) build.xml file : (from myLibraryProject/tests directory)
>android update test-project --path . -m ../
2) Modify the ant.properties file :
#tested.project.dir=../
android.library.reference.1=..
3) only then can I run :
ant emma debug install test
if I don't do step 2) then step 3) fails because the library project can not be installed
Any help would really be appreciated!
So here is the solution I found:
Create a new build.xml in your test project copy the "test" target from android sdk build.xml file (I have used sdk20 preview 2 version)
modify the sourcepath to point at the library project in the report section
this is the one I use now :