phpunit.xml
<phpunit
colors="true"
bootstrap="./tests/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
beStrictAboutTestsThatDoNotTestAnything="false"
strict="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
>
<testsuites>
<testsuite name="Main">
<directory>./tests/suites/main/</directory>
</testsuite>
<testsuite name="Supplemental">
<directory>./tests/suites/supplemental/</directory>
</testsuite>
<testsuite name="Integration">
<directory>./tests/suites/integration/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html"
target="./build/output/coverage/html"
lowUpperBound="50"
highLowerBound="90"/>
<log type="coverage-text"
target="php://stdout"
showUncoveredFiles="true"/>
<log type="coverage-clover" target="./build/logs/clover.xml"/>
</logging>
</phpunit>