phpunit.xml.dist 825 B

1234567891011121314151617181920212223242526272829
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false"
  11. bootstrap="vendor/autoload.php"
  12. >
  13. <testsuites>
  14. <testsuite name="Symfony HttpKernel Component Test Suite">
  15. <directory>./Tests/</directory>
  16. </testsuite>
  17. </testsuites>
  18. <filter>
  19. <whitelist>
  20. <directory>./</directory>
  21. <exclude>
  22. <directory>./Tests</directory>
  23. <directory>./vendor</directory>
  24. </exclude>
  25. </whitelist>
  26. </filter>
  27. </phpunit>