You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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