phpunit.xml 705 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="phpunit.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="Cors Test Suite">
  17. <directory>./tests/</directory>
  18. </testsuite>
  19. </testsuites>
  20. <filter>
  21. <whitelist>
  22. <directory>./src</directory>
  23. </whitelist>
  24. </filter>
  25. </phpunit>