phpunit.xml 707 B

123456789101112131415
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="tests/bootstrap.php" colors="true"
  3. convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true"
  4. executionOrder="depends,defects" processIsolation="false" stopOnFailure="false">
  5. <logging>
  6. <log type="coverage-html" target="cache/coverage" lowUpperBound="35" highLowerBound="70"/>
  7. <log type="coverage-clover" target="cache/coverage.clover"/>
  8. </logging>
  9. <testsuites>
  10. <testsuite name="default">
  11. <directory suffix="Test.php">tests</directory>
  12. </testsuite>
  13. </testsuites>
  14. </phpunit>