phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Unit Tests">
<directory>./tests/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src</directory>
<exclude>
<directory>./tests</directory>
<directory>./vendor</directory>
<directory>./docs</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./docs/logs/clover.xml"/>
<log type="testdox-html" target="./docs/logs/testdox.html"/>
</logging>
</phpunit>