phpunit.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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-event">
  10. <directory>../vendor/sabre/event/tests/</directory>
  11. </testsuite>
  12. <testsuite name="sabre-uri">
  13. <directory>../vendor/sabre/uri/tests/</directory>
  14. </testsuite>
  15. <testsuite name="sabre-xml">
  16. <directory>../vendor/sabre/xml/tests/Sabre/Xml/</directory>
  17. </testsuite>
  18. <testsuite name="sabre-http">
  19. <directory>../vendor/sabre/http/tests/HTTP</directory>
  20. </testsuite>
  21. <testsuite name="sabre-vobject">
  22. <directory>../vendor/sabre/vobject/tests/VObject</directory>
  23. </testsuite>
  24. <testsuite name="sabre-dav">
  25. <directory>Sabre/DAV</directory>
  26. </testsuite>
  27. <testsuite name="sabre-davacl">
  28. <directory>Sabre/DAVACL</directory>
  29. </testsuite>
  30. <testsuite name="sabre-caldav">
  31. <directory>Sabre/CalDAV</directory>
  32. </testsuite>
  33. <testsuite name="sabre-carddav">
  34. <directory>Sabre/CardDAV</directory>
  35. </testsuite>
  36. <filter>
  37. <whitelist addUncoveredFilesFromWhitelist="true">
  38. <directory suffix=".php">../lib/</directory>
  39. <exclude>
  40. <file>../lib/Sabre/autoload.php</file>
  41. <file>../lib/Sabre/VObject/includes.php</file>
  42. </exclude>
  43. </whitelist>
  44. </filter>
  45. </phpunit>