phpunit.xml.dist 553 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <phpunit bootstrap="./tests/bootstrap.php"
  3. colors="true"
  4. convertErrorsToExceptions="true"
  5. convertNoticesToExceptions="true"
  6. convertWarningsToExceptions="true"
  7. stopOnFailure="false">
  8. <testsuites>
  9. <testsuite name="Markdown LaTeX Test Suite">
  10. <file>./tests/MarkdownTest.php</file>
  11. <file>./tests/GithubMarkdownTest.php</file>
  12. </testsuite>
  13. </testsuites>
  14. <filter>
  15. <blacklist>
  16. <directory>./vendor</directory>
  17. <directory>./tests</directory>
  18. </blacklist>
  19. </filter>
  20. </phpunit>