phpunit.xml 421 B

123456789101112131415161718
  1. <phpunit
  2. colors="true"
  3. bootstrap="bootstrap.php"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. strict="true"
  8. >
  9. <testsuite name="Sabre_HTTP">
  10. <directory>HTTP/</directory>
  11. </testsuite>
  12. <filter>
  13. <whitelist addUncoveredFilesFromWhitelist="true">
  14. <directory suffix=".php">../lib/</directory>
  15. </whitelist>
  16. </filter>
  17. </phpunit>