1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
5    backupGlobals="false"
6    backupStaticAttributes="false"
7    bootstrap="./vendor/autoload.php"
8    colors="true"
9    convertErrorsToExceptions="true"
10    convertNoticesToExceptions="true"
11    convertWarningsToExceptions="true"
12    processIsolation="false"
13    stopOnFailure="false"
14    >
15    <testsuites>
16        <testsuite name="Mailer Test Suite">
17            <directory>./tests/</directory>
18        </testsuite>
19    </testsuites>
20    <filter>
21        <blacklist>
22            <directory suffix=".php">vendor</directory>
23        </blacklist>
24    </filter>
25    <logging>
26        <log
27            type="coverage-html"
28            target="docs/report"
29            lowUpperBound="35"
30            highLowerBound="70"
31            />
32    </logging>
33</phpunit>
34