phpunit.xml.dist 941 B

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. processIsolation="false"
  8. stopOnFailure="false"
  9. syntaxCheck="false"
  10. bootstrap="./tests/bootstrap.php"
  11. >
  12. <testsuites>
  13. <testsuite name="Swagger PHP Test Suite">
  14. <directory>./tests</directory>
  15. </testsuite>
  16. </testsuites>
  17. <filter>
  18. <whitelist>
  19. <directory>src</directory>
  20. </whitelist>
  21. <blacklist>
  22. <directory>vendor</directory>
  23. <directory>tests</directory>
  24. </blacklist>
  25. </filter>
  26. <logging>
  27. <log type="coverage-clover" target="build/logs/clover.xml"/>
  28. <log type="coverage-html" target="build/logs/html"/>
  29. </logging>
  30. </phpunit>