<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/7.1/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="tests">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false" addUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src/</directory>
<exclude>
<file>./src/PHPMailerHandler.php</file>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./build/coverage/" />
<log type="coverage-text" target="./build/coverage.txt" />
<log type="coverage-clover" target="./build/clover.xml" />
<log type="testdox-html" target="./build/testdox.html" />
<log type="testdox-text" target="./build/testdox.txt" />
</logging>
</phpunit>
|