phpunit.xml.dist 1020 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. <listeners>
  28. <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
  29. </listeners>
  30. <php>
  31. <ini name="zend.enable_gc" value="0"/>
  32. <env name="SKIP_LINT_TEST_CASES" value="0"/>
  33. </php>
  34. </phpunit>