diff options
Diffstat (limited to 'scripts/dev/generate-phpt/build.xml')
-rwxr-xr-x | scripts/dev/generate-phpt/build.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/scripts/dev/generate-phpt/build.xml b/scripts/dev/generate-phpt/build.xml new file mode 100755 index 0000000..c01954b --- /dev/null +++ b/scripts/dev/generate-phpt/build.xml @@ -0,0 +1,15 @@ +<?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> |