Açıklama Yok

phpunit.xml.dist 970B

12345678910111213141516171819202122232425262728
  1. <phpunit backupGlobals="false"
  2. backupStaticAttributes="false"
  3. bootstrap="./tests/bootstrap.php"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. syntaxCheck="false">
  11. <testsuites>
  12. <testsuite name="PhpWord Test Suite">
  13. <directory>./tests/PhpWord</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">./src</directory>
  19. <exclude>
  20. <directory suffix=".php">./src/PhpWord/Shared/PCLZip</directory>
  21. </exclude>
  22. </whitelist>
  23. </filter>
  24. <logging>
  25. <log type="coverage-html" target="./build/coverage" charset="UTF-8" highlight="true" />
  26. <log type="coverage-clover" target="./build/logs/clover.xml" />
  27. </logging>
  28. </phpunit>