build.xml
569 Bytes
<?xml version="1.0"?>
<!-- A phing build file for running unit test. -->
<project name="QFramework" default="test" basedir=".">
<property file="build.properties" />
<includepath classpath="${frameworkpath}" />
<includepath classpath="${librarypath}" />
<target name="test">
<phpunit haltonfailure="true" printsummary="true">
<batchtest>
<fileset dir=".">
<include name="**/QModels_MessageTest.php"/>
</fileset>
</batchtest>
<formatter type="xml" todir="test-reports" outfile="logfile.xml"/>
</phpunit>
</target>
</project>