phpunit.xml 812 B

123456789101112131415161718
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" bootstrap="tests/bootstrap.php" colors="true" executionOrder="depends,defects" processIsolation="false" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false">
  3. <coverage>
  4. <include>
  5. <directory suffix=".php">src</directory>
  6. </include>
  7. <report>
  8. <clover outputFile="cache/coverage.clover"/>
  9. <html outputDirectory="cache/coverage" lowUpperBound="35" highLowerBound="70"/>
  10. </report>
  11. </coverage>
  12. <logging/>
  13. <testsuites>
  14. <testsuite name="default">
  15. <directory suffix="Test.php">tests</directory>
  16. </testsuite>
  17. </testsuites>
  18. </phpunit>