travis.phpunit.xml.dist 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. verbose="false"
  4. stopOnError="false"
  5. stopOnFailure="false"
  6. stopOnIncomplete="false"
  7. stopOnSkipped="false"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. colors="false"
  12. forceCoversAnnotation="false"
  13. strict="false"
  14. processIsolation="false">
  15. <testsuites>
  16. <testsuite name="PHPMailer Tests">
  17. <directory>./test/</directory>
  18. </testsuite>
  19. </testsuites>
  20. <filter>
  21. <blacklist>
  22. <directory suffix=".php">./extras</directory>
  23. </blacklist>
  24. </filter>
  25. <groups>
  26. <exclude>
  27. <group>languages</group>
  28. </exclude>
  29. </groups>
  30. <logging>
  31. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  32. <log type="coverage-clover" target="build/logs/clover.xml"/>
  33. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
  34. </logging>
  35. </phpunit>