phpunit.xml 625 B

1234567891011121314151617181920212223
  1. <phpunit
  2. colors="true"
  3. bootstrap="bootstrap.php"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. beStrictAboutTestsThatDoNotTestAnything="true"
  8. beStrictAboutOutputDuringTests="true"
  9. beStrictAboutTestSize="true"
  10. >
  11. <testsuite name="Sabre\VObject">
  12. <directory>VObject/</directory>
  13. </testsuite>
  14. <filter>
  15. <whitelist addUncoveredFilesFromWhitelist="true">
  16. <directory suffix=".php">../lib/</directory>
  17. <exclude>
  18. <file>../lib/Sabre/VObject/includes.php</file>
  19. </exclude>
  20. </whitelist>
  21. </filter>
  22. </phpunit>