phpunit.xml 521 B

123456789101112131415161718192021
  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\VObject">
  10. <directory>VObject/</directory>
  11. </testsuite>
  12. <filter>
  13. <whitelist addUncoveredFilesFromWhitelist="true">
  14. <directory suffix=".php">../lib/</directory>
  15. <exclude>
  16. <file>../lib/Sabre/VObject/includes.php</file>
  17. </exclude>
  18. </whitelist>
  19. </filter>
  20. </phpunit>