phpunit.xml.dist 1.0 KB

12345678910111213141516171819202122232425262728293031323334
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. beStrictAboutOutputDuringTests="false"
  5. beStrictAboutTestsThatDoNotTestAnything="true"
  6. beStrictAboutTestSize="true"
  7. beStrictAboutTodoAnnotatedTests="true"
  8. bootstrap="test/bootstrap.php"
  9. checkForUnintentionallyCoveredCode="true"
  10. colors="true"
  11. convertErrorsToExceptions="true"
  12. convertNoticesToExceptions="true"
  13. convertWarningsToExceptions="true"
  14. strict="false"
  15. verbose="true"
  16. >
  17. <testsuites>
  18. <testsuite name="unit">
  19. <directory suffix="Test.php">test</directory>
  20. </testsuite>
  21. </testsuites>
  22. <filter>
  23. <whitelist processUncoveredFilesFromWhitelist="true">
  24. <directory suffix=".php">application</directory>
  25. </whitelist>
  26. </filter>
  27. <!-- <logging>
  28. <log type="coverage-html" target="build/coverage" />
  29. </logging> -->
  30. </phpunit>