You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello,
We have integrated Clover for Android in Eclipse IDE. We are able to generate the html report of the project. But when we open the dashboard of that html page we are not able to see the line coverage and branch coverage of the overall project. It is giving the coverage as per the package or class . We need for the overall project.
Can you please help us how to read the dashboard and understand various aspects of it.
Help Appreciated.
Thanks!
Bhushan
Hi Bhushan,
The dashboard itself is not configurable, however you can configure content of detailed reports for packages and classes. In order to do this, you'd have to use Ant and generate HTML report outside Eclipse. The task can contain one or more elements and you can choose which metrics shall be displayed in the report. Please see https://confluence.atlassian.com/display/CLOVER/clover-report#clover-report-Columns for more details. If you'd like to learn more about metrics and reports, I suggest a following lecture:
* https://confluence.atlassian.com/display/CLOVER/About+Code+Coverage
* https://confluence.atlassian.com/display/CLOVER/1.+Clover+for+Eclipse+in+10+minutes
* https://confluence.atlassian.com/display/CLOVER/4.+Understanding+Reports
Cheers
We need the line coverage and branch coverage of the overall project.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
We need the line coverage and branch coverage of the overall project.
Strictly speaking, Clover does not have a line coverage metric. Instead of this, a statement coverage metric is available (which is quite similar in terms of granularity).
Another question is how do you interpret branch coverage - is it a coverage of branches only (i.e. decision blocks like "if") or is it a coverage of statements + branches. In my opinion it should be the latter one, but it's up to you.
In order to read coverage value for the whole project, you can generate XML report. In the beginning of the file you'll find a <project> tag, for instance:
<coverage generated="1370605007732" clover="3.1.12"> <project timestamp="1370605007039"> <metrics conditionals="46" methods="31" classes="3" files="3" packages="1" coveredstatements="90" complexity="54" loc="285" ncloc="183" coveredmethods="31" coveredconditionals="39" statements="95" coveredelements="160" elements="172"/> ...
You can calculate coverage as follows:
Note: a total coverage metric is described here.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello everyone, I am a product manager in the Jira Cloud team focused on making sure our customers have a delightful experience using our products. Towards that goal, one of the areas which is extr...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.