phpunit.xml.dist 428 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit bootstrap="vendor/autoload.php"
  3. colors="true"
  4. stopOnFailure="false"
  5. syntaxCheck="false">
  6. <testsuites>
  7. <testsuite name="The project's test suite">
  8. <directory>./tests</directory>
  9. </testsuite>
  10. </testsuites>
  11. <logging>
  12. <log type="coverage-clover" target="./build/logs/clover.xml"/>
  13. </logging>
  14. </phpunit>