Mercurial > hg > isophonics-drupal-site
diff vendor/phpunit/php-code-coverage/phpunit.xml.dist @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/phpunit/php-code-coverage/phpunit.xml.dist Wed Nov 29 16:09:58 2017 +0000 @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<phpunit backupGlobals="false" + backupStaticAttributes="false" + bootstrap="vendor/autoload.php"> + <testsuites> + <testsuite name="PHP_CodeCoverage"> + <directory suffix="Test.php">tests/PHP</directory> + </testsuite> + </testsuites> + + <logging> + <log type="coverage-html" target="build/coverage"/> + <log type="coverage-clover" target="build/logs/clover.xml"/> + <log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/> + </logging> + + <filter> + <whitelist addUncoveredFilesFromWhitelist="true"> + <directory suffix=".php">src</directory> + </whitelist> + </filter> +</phpunit> +