<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    backupGlobals="false"
    backupStaticAttributes="false"
    bootstrap="./src/autoload.php"
    colors="true"
    convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    processIsolation="false"
    stopOnFailure="false"
    syntaxCheck="false"
>
    <testsuites>
        <testsuite name="Application Test Suite">
            <directory>./tests/</directory>
        </testsuite>
    </testsuites>

    <filter>
        <blacklist>
            <file>./src/autoload.php</file>
            <directory>./vendor/</directory>
        </blacklist>
    </filter>

    <logging>
        <log
            type="coverage-html"
            target="./build/coverage/report"
            lowUpperBound="35"
            highLowerBound="70"
        />
    </logging>
</phpunit>