Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Excluding classes/packages from clover coverage report

Tassilo Horn July 12, 2011

Hi all,

we use clover for generating test coverage reports for our graph library.

<address> http://userpages.uni-koblenz.de/~ist/jgralab/coverage/report/</address><address> </address><address>We use Clover for Ant, thus our build.xml contains:</address>

<property name="clover.jar" value="${lib.dir}/clover/clover-3.1.0.jar" />

<taskdef resource="cloverlib.xml" classpath="${clover.jar}" />

<target name="with.clover">

<clover-setup />

</target>

<target name="clover.html">

<clover-html-report

outdir="${project.dir}/build/clover-report"

title="JGraLab Clover Report" />

</target>

To generate a new report, we just run:

ant with.clover build test clover.html

My question is: How can we exclude several classes/packages from the report generation?

For example, we don't want to have our test classes listed in the report. Currently, some non-JUnit test classes show up as top project risks, which is clearly wrong.

Likewise, we want to exclude several packages that contain only classes and interfaces generated by our code generator. The code generator is well-tested, so we may assume its output is correct and there's no need to cover everything it has generated.

2 answers

1 accepted

0 votes
Answer accepted
mstudman
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
July 14, 2011

You don't want to exclude test classes from your report. Really, you don't! You want to partition the reports into test code and non-test code. This way the top risks will be restricted to the non-test code.

Check out the <testsources/> element for <clover-report/> & <clover-html-report/> http://confluence.atlassian.com/display/CLOVER/clover-report#clover-report-Testsources

To filter out individual packages, try out the <fileset/> element

http://confluence.atlassian.com/display/CLOVER/clover-report#clover-report-Fileset

Tassilo Horn July 20, 2011

Thanks Michael,

that did the trick. :-)

0 votes
caduandrade May 14, 2013

Hi...

sorry, but how this filter works with maven?

my pom is:

<plugin>

<groupId>com.atlassian.maven.plugins</groupId>

<artifactId>maven-clover2-plugin</artifactId>

<configuration>

<excludes>

<exclude>nothing here is working, even "*.java"</exclude>

</excludes>

</configuration>

</plugin>

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events