phpunit.xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
bootstrap="./tests/index.php"
colors="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="PLUGIN">
<directory suffix="Test.php">./tests</directory>
<exclude>./tests/kirby</exclude>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="QUEUE_CONNECTION" value="sync"/>
</php>
<coverage>
<report>
<clover outputFile="tests/clover.xml"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">classes</directory>
</include>
</source>
</phpunit>