phpunit.xml.dist 818 B

1234567891011121314151617181920212223242526
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.0/phpunit.xsd"
  4. bootstrap="vendor/autoload.php"
  5. backupGlobals="false"
  6. colors="true"
  7. verbose="true"
  8. stopOnFailure="false">
  9. <testsuites>
  10. <testsuite name="Dot Test Suite">
  11. <directory>tests</directory>
  12. </testsuite>
  13. </testsuites>
  14. <filter>
  15. <whitelist processUncoveredFilesFromWhitelist="true">
  16. <directory suffix=".php">src</directory>
  17. </whitelist>
  18. </filter>
  19. <logging>
  20. <!-- <log type="coverage-html" target="build/coverage" /> -->
  21. <!-- <log type="coverage-text" target="php://stdout" /> -->
  22. </logging>
  23. </phpunit>