phpunit.xml.dist 914 B

12345678910111213141516171819202122232425262728293031323334
  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. >
  13. <testsuites>
  14. <testsuite>
  15. <directory>./tests</directory>
  16. <exclude>./tests/Standalone</exclude>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>./src</directory>
  22. <exclude>
  23. <directory>./src/Resources</directory>
  24. </exclude>
  25. </whitelist>
  26. </filter>
  27. <php>
  28. <ini name="zend.enable_gc" value="0"/>
  29. <env name="SKIP_LINT_TEST_CASES" value="0"/>
  30. </php>
  31. </phpunit>