php-src/scripts/dev/generate-phpt/build.xml
2009-05-07 09:21:43 +00:00

16 lines
406 B
XML
Executable File

<?xml version="1.0"?>
<project name="generate" default="test" basedir=".">
<property name="build.dir" value="_build" />
<target name="docs" description="Create API documentation.">
<exec command="doxygen doxygen.conf" />
</target>
<target name="test" description="Run all unit tests.">
<exec command="phpunit --coverage-html coverage tests" passthru="true" />
</target>
</project>