phpunit.xml 719 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="tests/bootstrap.php"
  5. colors="true"
  6. convertErrorsToExceptions="true"
  7. convertNoticesToExceptions="true"
  8. convertWarningsToExceptions="true"
  9. processIsolation="false"
  10. stopOnError="false"
  11. stopOnFailure="false"
  12. syntaxCheck="true"
  13. verbose="true"
  14. >
  15. <testsuites>
  16. <testsuite name="TLDSupport Test Suite">
  17. <directory>./tests</directory>
  18. </testsuite>
  19. </testsuites>
  20. <filter>
  21. <whitelist>
  22. <directory>./src</directory>
  23. </whitelist>
  24. </filter>
  25. </phpunit>