<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
         backupGlobals="false"
         backupStaticAttributes="false"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false">

    <filter>
        <whitelist>
            <directory suffix=".php">./source</directory>
        </whitelist>
    </filter>

    <testsuites>
        <testsuite name="general">
            <directory>tests</directory>
        </testsuite>

        <testsuite name="directPreApproval">
            <directory>tests/Domains/DirectPreApproval</directory>
        </testsuite>
    </testsuites>

    <logging>
        <log type="coverage-html" target="tests/codeCoverage/html"
             lowUpperBound="50"  highLowerBound="80" />
    </logging>
</phpunit>