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

    <testsuites>
        <testsuite name="TopSort Test Suite">
            <directory>tests/</directory>
        </testsuite>
    </testsuites>


    <logging>
        <log type="coverage-html" target="./report/" charset="UTF-8"
             highlight="false" lowUpperBound="35" highLowerBound="70"/>
        <log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
        <log type="coverage-clover" target="build/logs/clover.xml"/>
    </logging>

    <filter>
        <whitelist>
            <directory>src/</directory>
            <exclude>
                <directory>src/Command</directory>
            </exclude>
        </whitelist>
    </filter>
</phpunit>
