phpunit.xml.dist 513 B

12345678910111213141516171819
  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="Test Suite">
  10. <directory>./tests</directory>
  11. </testsuite>
  12. </testsuites>
  13. <filter>
  14. <whitelist processUncoveredFilesFromWhitelist="false">
  15. <file>Installer.php</file>
  16. <file>Plugin.php</file>
  17. </whitelist>
  18. </filter>
  19. </phpunit>