diff options
Diffstat (limited to 'phpunit.xml')
-rw-r--r-- | phpunit.xml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/phpunit.xml b/phpunit.xml new file mode 100644 index 0000000..d13e9bf --- /dev/null +++ b/phpunit.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8" ?> +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd" + bootstrap="vendor/autoload.php" + cacheResultFile="build/phpunit/result.cache" + colors="true"> + <testsuites> + <testsuite name="tests"> + <directory>tests</directory> + </testsuite> + </testsuites> + + <logging> + <log type="coverage-text" target="php://stdout" /> + <log type="coverage-clover" target="build/phpunit/cov.xml" /> + </logging> + + <filter> + <whitelist processUncoveredFilesFromWhitelist="true"> + <directory suffix=".php">app/class</directory> + </whitelist> + </filter> +</phpunit>
\ No newline at end of file |