phpunit.xml.dist 948 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false">
  3. <php>
  4. <const name="PHPUNIT_TESTSUITE" value="true"/>
  5. </php>
  6. <testsuites>
  7. <testsuite name="PHPUnit Mock Objects">
  8. <directory suffix="Test.php">Tests</directory>
  9. <directory suffix=".phpt">Tests</directory>
  10. </testsuite>
  11. </testsuites>
  12. <logging>
  13. <log type="coverage-html" target="build/coverage" title="PHPUnit Mock Objects"
  14. charset="UTF-8" yui="true" highlight="true"
  15. lowUpperBound="35" highLowerBound="70"/>
  16. <log type="coverage-clover" target="build/logs/clover.xml"/>
  17. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
  18. </logging>
  19. <filter>
  20. <whitelist addUncoveredFilesFromWhitelist="true">
  21. <directory suffix=".php">PHPUnit</directory>
  22. <exclude>
  23. <file>PHPUnit/Framework/MockObject/Autoload.php</file>
  24. </exclude>
  25. </whitelist>
  26. </filter>
  27. </phpunit>