phpunit.xml.dist 807 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- http://www.phpunit.de/manual/current/en/appendixes.configuration.html -->
  3. <phpunit
  4. backupGlobals = "false"
  5. backupStaticAttributes = "false"
  6. strict = "false"
  7. colors = "true"
  8. convertErrorsToExceptions = "true"
  9. convertNoticesToExceptions = "true"
  10. convertWarningsToExceptions = "true"
  11. processIsolation = "false"
  12. stopOnFailure = "false"
  13. syntaxCheck = "false">
  14. <testsuites>
  15. <testsuite name="Project Test Suite">
  16. <directory>tests</directory>
  17. </testsuite>
  18. </testsuites>
  19. <filter>
  20. <whitelist>
  21. <directory>.</directory>
  22. </whitelist>
  23. </filter>
  24. </phpunit>