-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathbuild.xml
30 lines (28 loc) · 1.12 KB
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<project name="atoum" default="test">
<taskdef name="atoum" classpath="./" classname="AtoumTask"/>
<!-- ============================================ -->
<!-- Target: Test -->
<!-- ============================================ -->
<target name="test">
<atoum
atoumautoloaderpath="../../classes/autoloader.php"
phppath="/usr/bin/php"
codecoverage="true"
codecoveragereportpath="reports/html/"
codecoveragetreemappath="reports/treemap/"
codecoveragexunitpath="reports/xunit/xunit.xml"
codecoveragecloverpath="reports/clover/clover.xml"
showcodecoverage="true"
showmissingcodecoverage="true"
showprogress="true"
showmemory="true"
showduration="true"
maxchildren="5"
>
<fileset dir="../../tests/units/">
<include name="**/*.php"/>
</fileset>
</atoum>
</target>
</project>