forked from massfords/we99
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclover-report.xml
More file actions
21 lines (21 loc) · 926 Bytes
/
clover-report.xml
File metadata and controls
21 lines (21 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<project name="Clover Report" default="current">
<!-- Initialize Clover -->
<clover-setup initString="${cloverdb}"/>
<target name="historical">
<!-- Empty as we're not interested in historical reports right now -->
</target>
<target name="current">
<clover-report>
<current outfile="${output}" title="${title}">
<format type="html" filter="generated,assert"/>
<testsources dir=".">
<include name="**/src/test/java/**/*ST.java"/>
<include name="**/src/test/java/**/*IT.java"/>
<include name="**/src/test/java/**/*Test.java"/>
<include name="**/we99-test/src/main/java/**/*.java"/>
</testsources>
<testresults dir="." includes="**/target/test-report/TEST-*.xml"/>
</current>
</clover-report>
</target>
</project>