phpunit.xml.dist 648 B

1234567891011121314151617181920212223
  1. <phpunit backupGlobals="false"
  2. backupStaticAttributes="false"
  3. bootstrap="bootstrap.php"
  4. colors="false"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false">
  11. <testsuites>
  12. <testsuite name="hamcrest-php">
  13. <directory suffix="Test.php">.</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist addUncoveredFilesFromWhitelist="true">
  18. <directory suffix=".php">../hamcrest</directory>
  19. </whitelist>
  20. </filter>
  21. </phpunit>