phpunit.xml.dist 959 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. bootstrap="vendor/autoload.php"
  5. beStrictAboutOutputDuringTests="true"
  6. beStrictAboutTestsThatDoNotTestAnything="true"
  7. colors="true"
  8. convertErrorsToExceptions="true"
  9. convertNoticesToExceptions="true"
  10. convertWarningsToExceptions="true"
  11. processIsolation="false"
  12. stopOnFailure="true"
  13. syntaxCheck="true"
  14. >
  15. <testsuites>
  16. <testsuite name="phpDocumentor\GraphViz">
  17. <directory>./tests/</directory>
  18. </testsuite>
  19. </testsuites>
  20. <logging>
  21. <log type="coverage-clover" target="build/logs/clover.xml" />
  22. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false" />
  23. </logging>
  24. <filter>
  25. <whitelist>
  26. <directory>./src/</directory>
  27. </whitelist>
  28. </filter>
  29. </phpunit>