phpunit.xml 1009 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false"
  3. backupStaticAttributes="false"
  4. colors="false"
  5. convertErrorsToExceptions="true"
  6. convertNoticesToExceptions="true"
  7. convertWarningsToExceptions="true"
  8. processIsolation="false"
  9. stopOnFailure="false"
  10. forceCoversAnnotation="true"
  11. executionOrder="depends,random">
  12. <testsuites>
  13. <testsuite name="Integration">
  14. <directory suffix="Test.php">./tests/integration</directory>
  15. </testsuite>
  16. <testsuite name="Unit">
  17. <directory suffix="Test.php">./tests/unit</directory>
  18. </testsuite>
  19. </testsuites>
  20. <logging>
  21. <log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true"/>
  22. </logging>
  23. <filter>
  24. <whitelist processUncoveredFilesFromWhitelist="false">
  25. <directory suffix=".php">./src</directory>
  26. </whitelist>
  27. </filter>
  28. </phpunit>