This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="build" default="phpunit"> | |
<target name="phpunit" depends="composer-install"> | |
<exec executable="vendor/bin/phpunit" failonerror="true"> | |
<!-- include group unit --> | |
<arg line="--group unit"/> | |
<!-- arg for test directory --> | |
<arg value="./"/> | |
</exec> |