phpunit.xml.dist 704 B

1234567891011121314151617181920212223242526
  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. verbose="true"
  13. >
  14. <testsuites>
  15. <testsuite name="JSON Schema Test Suite">
  16. <directory>tests</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>./src/JsonSchema/</directory>
  22. </whitelist>
  23. </filter>
  24. </phpunit>