summaryrefslogtreecommitdiff
path: root/scripts/dev/generate-phpt/build.xml
blob: c01954bda937a6801934ab881ee8a553d83321cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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>