phpunit.xml.dist 603 B

1234567891011121314151617181920
  1. <phpunit backupGlobals="false"
  2. backupStaticAttributes="false"
  3. bootstrap="vendor/autoload.php"
  4. colors="true"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false">
  10. <testsuites>
  11. <testsuite name="Dompdf Test Suite">
  12. <directory>tests</directory>
  13. </testsuite>
  14. </testsuites>
  15. <filter>
  16. <whitelist>
  17. <directory suffix="php">src</directory>
  18. </whitelist>
  19. </filter>
  20. </phpunit>