diff options
author | Fabio Bas <ctrlaltca@gmail.com> | 2013-10-03 22:33:47 +0200 |
---|---|---|
committer | Fabio Bas <ctrlaltca@gmail.com> | 2013-10-03 22:33:47 +0200 |
commit | b6ba3bb4b336058b6db500799b16dc016c74aed7 (patch) | |
tree | dc7ab86a83ef6fe5db5fe13665dc2d6dd6d502ce | |
parent | bbeb1b968f5234a62c32681c2ed9e4a7a189bd34 (diff) |
Try to include functional tests in coverage
-rw-r--r-- | build.xml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -298,11 +298,14 @@ <coverage-setup database="${build.test.dir}/coverage.db"> <fileset refid="framework-php" /> </coverage-setup> - <phpunit codecoverage="true" haltonfailure="false" haltonerror="false" printsummary="false" bootstrap="./tests/unit/bootstrap.php"> + <phpunit codecoverage="true" haltonfailure="false" haltonerror="false" printsummary="false" bootstrap="./tests/test_tools/phpunit_bootstrap.php"> <batchtest> <fileset dir="tests/unit"> <include name="**/*Test.php"/> </fileset> + <fileset dir="tests/FunctionalTests"> + <include name="**/*TestCase.php"/> + </fileset> </batchtest> <formatter type="xml" todir="${build.test.dir}" outfile="unit-tests.xml"/> <formatter type="clover" todir="${build.test.dir}" outfile="clover.xml"/> |