I have an Android Maven project (let's call it parent_project) that contains various submodules: my_library_project, app_using_my_library_project, test_project and extra_lib.

So, the structure would be like this:

parent_project
   * my_library_project (Android Library Project)
   * app_using_my_library_project (Demo app that uses the Android Library Project)
   * test_project (Project containing the tests instrumented against app_using_my_library_project)
   * extra_lib

What I would like is to generate test coverage for my Android project using Maven (and not Ant, I am already able to generate code coverage reports using Ant, following these instructions: https://wiki.jenkins-ci.org/display/JENKINS/Building+an+Android+app+and+test+project).

I have no strong preference for the code coverage tool used but I would prefer EMMA, since seems the most common in the Android development world.

I am using android-maven-plugin (http://code.google.com/p/maven-android-plugin/) in its 3.0.0-alpha-12 version and I have already tried to put in the configuration of my parent's pom.xml the next:

<test>
  <coverage>true</coverage>
  <createreport>true</createreport>
</test>

But that does not produce the desired code coverage report.

So:

  • Is there any difference between the pom configuration for getting code coverage for a standard Java project and an Android project?
  • Do you know any example Android project using Maven that has code coverage?
  • Any hints on how to do this?
link|improve this question

60% accept rate
You get no report at all? You get a report that is irrelevant? You get a report that might be revelant but you don't like the answer? What are the symtoms of "don't get a report"? – Ira Baxter Nov 7 '11 at 4:01
Yes, I do not get test coverage report at all using Maven. I researched a lot and I did not find anything about configuring Maven to get test coverage in Android. I tried that configuration in my parent pom.xml, that seemed related to my problem and that I found here: code.google.com/p/maven-android-plugin/wiki/Changelog. I have not tried to include a dependency in the pom.xml for EMMA, like in a standard Java project, but I am unsure that it will work, thus my question. – Edu Zamora Nov 7 '11 at 7:59
I'm not specifically familar with Maven. Does it claim to have support for running tests on Android? If not, why are you expecting this to work? – Ira Baxter Nov 7 '11 at 8:02
Yes, Maven is able to build Android projects and automatically run all the tests, generating a report about the results (if they passed or not, how long they took...). But what I want, and I seem not to be able to do, is to get a code coverage report, that tells me which parts of the code have been exercised by the tests and which parts have not been tested yet. – Edu Zamora Nov 7 '11 at 8:20
feedback

2 Answers

If you're going to stick with maven, and want a plugin for maven that will do the code-coverage job, I think Cobertura is a better choice, as Emma stable last build is from 2005.

Although in "Android Application Testing Guide" (a recent book from June this year) they talk about Emma and demonstrate how to use it for testing, I think people stick to it, because it's needed to build Android from source (and if Google use it for their own OS development, it should be the best, right?).

If you're not fanatically bound to Maven, I strongly recommend to try Robotium. Robotium has full support for Activities, Dialogs, Toasts, Menus, and Context Menus. It also supports code coverage (Ant based though, for now) and some people recognize it as one of the leading testing platforms for Android.

Edit:

According to the Cobertura site, it supports code coverage in Maven 1 and Maven 2 environments. Although, you can find examples with Maven 3 also. A problem exists between pom configurations of Maven 2 and Maven 3. It seems for the reporting to work you have to basically move your old reporting plugins into the configuration section of the new maven-site-plugin. (See the article for details).

Another option is to try and use Sonar with Maven. Sonar has cobertura embedded (also options to embedd EMMA) and some people state that they had successfully reported code coverage, despite they had problems using the "stand-alone" cobertura plugin.

link|improve this answer
Thanks for your suggestion, I will try to see if I can get what I want using Cobertura and report back what I find out. How I said in my question, currently I am using Ant for getting (some) test coverage, although I would prefer to be able to do everything with Maven. I am already using Robotium (tests in device, to see that everything really works as expected) and Robolectric (faster tests, more appropriate while developing), but the problem is that I was not able to put the Robolectric tests in the Android Test Project, so I don't know how to get a complete test coverage report with Ant. – Edu Zamora Nov 10 '11 at 8:25
which version of Maven do you use? – hovanessyan Nov 10 '11 at 8:41
Apache Maven 3.0.3 (r1075438; 2011-02-28 18:31:09+0100) and android-maven-plugin in its version 3.0.0-alpha-13. – Edu Zamora Nov 10 '11 at 9:14
the sonar project looks promising, tell back if you try it and get successful code coverage reports :). – hovanessyan Nov 11 '11 at 10:04
It really, really does :) I wanted something like this, a centralized place to take a look at all the quality measurements of my code. When I have time I will try to make it work and report back if I am successful. Although it does not completely answer my doubts, I will award you with the bounty (that is about to expire) for your help. – Edu Zamora Nov 11 '11 at 13:46
show 2 more comments
feedback

Either by:

  • adding the EMMA plugin in the report section of the pom.xml:

<reports>
  <report>maven-emma-plugin</report>
</reports>
  • in the command line by running mvn emma:test and then emma:report

note: you need to install the emma plugin first of course.

link|improve this answer
I have been not able to install the Maven Emma Plugin (I am not so Maven savvy). When trying to install automatically by "maven plugin:download -DgroupId=emma -DartifactId=maven-emma-plugin -Dversion=0.6" I get a "-bash: maven: command not found". If I try instead by "mvn plugin:download -DgroupId=emma -DartifactId=maven-emma-plugin -Dversion=0.6" I get "Could not find goal 'download' in plugin org.apache.maven.plugins:maven-plugin-plugin:2.9". – Edu Zamora Nov 9 '11 at 9:41
I have also tried it to install it manually in the plugins folder, and then, if I try "mvn emma:test" I get "Could not find goal 'test' in plugin org.codehaus.mojo:emma-maven-plugin:1.0-alpha-3". It seems that is not looking for the Maven Emma Plugin that I have installed. Any hint? – Edu Zamora Nov 9 '11 at 9:42
Okay so looking from here emma.sourceforge.net/maven-emma-plugin/changelog-report.html the emma plugin is from 2005.. which means the installation details must be related to maven 1 and mvn 2 no longer have the plugin:download goal I guess. I suggest that you switch to cobertura, you'll find all the info for installation here: maven-plugins.sourceforge.net/installing.html and then just add <report>maven-cobertura-plugin</report> to the reports section of your POM – xsace Nov 9 '11 at 10:32
feedback

Your Answer

 
or
required, but never shown

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