phpunit.xml.dist 860 B

12345678910111213141516171819202122232425
  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="PHPPresentation Test Suite">
  13. <directory>./tests/PhpPresentation</directory>
  14. </testsuite>
  15. </testsuites>
  16. <filter>
  17. <whitelist>
  18. <directory suffix=".php">./src</directory>
  19. </whitelist>
  20. </filter>
  21. <logging>
  22. <log type="coverage-html" target="./build/coverage" charset="UTF-8" highlight="true" />
  23. <log type="coverage-clover" target="./build/logs/clover.xml" />
  24. </logging>
  25. </phpunit>