phpunit.xml 640B

12345678910111213141516171819202122232425
  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. syntaxCheck="false"
  10. bootstrap="test/bootstrap.php"
  11. >
  12. <testsuites>
  13. <testsuite name="FastRoute Tests">
  14. <directory>./test/</directory>
  15. </testsuite>
  16. </testsuites>
  17. <filter>
  18. <whitelist>
  19. <directory>./src/</directory>
  20. </whitelist>
  21. </filter>
  22. </phpunit>