phpunit.xml 517 B

1234567891011121314151617181920212223
  1. <phpunit
  2. bootstrap="tests/bootstrap.php"
  3. colors="true"
  4. backupGlobals="false"
  5. beStrictAboutTestsThatDoNotTestAnything="false">
  6. <testsuites>
  7. <testsuite name="Tests">
  8. <directory suffix="Test.php">./tests</directory>
  9. </testsuite>
  10. </testsuites>
  11. <coverage processUncoveredFiles="true">
  12. <include>
  13. <directory suffix=".php">src</directory>
  14. </include>
  15. <report>
  16. <html outputDirectory="build/coverage"/>
  17. <text outputFile="php://stdout" showOnlySummary="true"/>
  18. </report>
  19. </coverage>
  20. </phpunit>