phpunit.xml.dist 745 B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. bootstrap = "vendor/autoload.php"
  7. colors = "true"
  8. convertErrorsToExceptions = "true"
  9. convertNoticesToExceptions = "true"
  10. convertWarningsToExceptions = "true"
  11. processIsolation = "false"
  12. stopOnFailure = "false"
  13. syntaxCheck = "false"
  14. >
  15. <testsuites>
  16. <testsuite name="Test Suite">
  17. <directory>src/</directory>
  18. <directory>tests/</directory>
  19. </testsuite>
  20. </testsuites>
  21. </phpunit>