설명 없음
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

phpunit.xml.dist 1.1KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd"
  5. backupGlobals="true"
  6. bootstrap="vendor/autoload.php"
  7. verbose="true"
  8. colors="true"
  9. forceCoversAnnotation="false"
  10. >
  11. <testsuites>
  12. <testsuite name="PHPMailerTests">
  13. <directory>./test/</directory>
  14. </testsuite>
  15. </testsuites>
  16. <listeners>
  17. <listener class="PHPMailer\Test\DebugLogTestListener" />
  18. </listeners>
  19. <groups>
  20. <exclude>
  21. <group>languages</group>
  22. <group>pop3</group>
  23. </exclude>
  24. </groups>
  25. <filter>
  26. <whitelist addUncoveredFilesFromWhitelist="true">
  27. <directory suffix=".php">./src</directory>
  28. </whitelist>
  29. </filter>
  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"/>
  34. </logging>
  35. </phpunit>