travis.phpunit.xml.dist 980 B

123456789101112131415161718192021222324252627282930
  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. processIsolation="false">
  14. <testsuites>
  15. <testsuite name="PHPMailer Tests">
  16. <directory>./test/</directory>
  17. </testsuite>
  18. </testsuites>
  19. <groups>
  20. <exclude>
  21. <group>languages</group>
  22. <group>pop3</group>
  23. </exclude>
  24. </groups>
  25. <logging>
  26. <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
  27. <log type="coverage-clover" target="build/logs/clover.xml"/>
  28. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
  29. </logging>
  30. </phpunit>