phpunit.xml.dist 914 B

123456789101112131415161718192021222324252627282930313233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit
  3. backupGlobals="false"
  4. backupStaticAttributes="false"
  5. syntaxCheck="false"
  6. bootstrap="tests/bootstrap.php"
  7. colors="true"
  8. >
  9. <testsuites>
  10. <testsuite name="Solarium">
  11. <directory suffix="Test.php">tests</directory>
  12. </testsuite>
  13. </testsuites>
  14. <logging>
  15. <log type="coverage-html" target="build/coverage" title="Solarium"
  16. charset="UTF-8" yui="true" highlight="true"
  17. lowUpperBound="35" highLowerBound="70"/>
  18. <log type="coverage-clover" target="build/logs/clover.xml"/>
  19. <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
  20. </logging>
  21. <filter>
  22. <whitelist>
  23. <directory suffix=".php">library</directory>
  24. <exclude>
  25. <file>library/Solarium/Autoloader.php</file>
  26. </exclude>
  27. </whitelist>
  28. </filter>
  29. </phpunit>