<phpunit strict="true"
         backupGlobals="false"
         backupStaticAttributes="false"
         syntaxCheck="false"
         timeoutForSmallTests="100"
         timeoutForMediumTests="200"
         timeoutForLargeTests="300"
         bootstrap="Tests/Autoload.php">
    <testsuites>
        <testsuite name="Library Check">
            <directory suffix=".php">Tests/</directory>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">Lib/</directory>
        </whitelist>
        <blacklist>
            <directory suffix=".php">vendor/</directory>
            <directory suffix=".php">Tests/</directory>
        </blacklist>
    </filter>
    <logging>
        <log type="coverage-html" target="Tests/Coverage" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
    </logging>
</phpunit>
