phpunit.xml.dist 579 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit backupglobals="false"
  3. backupstaticattributes="false"
  4. bootstrap="vendor/autoload.php"
  5. colors="true"
  6. converterrorstoexceptions="true"
  7. convertnoticestoexceptions="true"
  8. convertwarningstoexceptions="true"
  9. processisolation="false"
  10. stopOnFailure="false"
  11. syntaxcheck="false"
  12. verbose="true">
  13. <testsuites>
  14. <testsuite name="red model test suite">
  15. <directory>tests/</directory>
  16. </testsuite>
  17. </testsuites>
  18. </phpunit>