phpunit.xml.dist 615 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit colors="true"
  3. convertErrorsToExceptions="true"
  4. convertNoticesToExceptions="true"
  5. convertWarningsToExceptions="true"
  6. processIsolation="false"
  7. stopOnFailure="false"
  8. syntaxCheck="false"
  9. bootstrap="vendor/autoload.php"
  10. >
  11. <testsuites>
  12. <testsuite name="php-xdg-base-dir unit tests">
  13. <directory>./tests/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory>./src/</directory>
  19. </whitelist>
  20. </filter>
  21. </phpunit>