blob: 21cd0b6049df7b877fa6e4e86da3c603d19d94ed (
plain)
1
2
3
4
5
6
7
8
|
<?xml version="1.0" encoding="UTF-8"?>
<project name="php-ssrs" basedir="." default="app">
<!-- Unit Tests & coverage analysis -->
<target name="phpunit">
<echo msg="PHP Unit..." />
<exec command="phpunit --configuration '${ws}/tests/phpunit.xml' --log-junit '${ws}/logs/phpunit.xml' --coverage-clover '${ws}/logs/coverage/clover.xml' '${ws}/tests'" />
</target>
</project>
|