<phpunit 
	bootstrap="./vendor/autoload.php" 
	colors="false"
	convertErrorsToExceptions="true"
    convertNoticesToExceptions="true"
    convertWarningsToExceptions="true"
    verbose="true"
    stopOnFailure="false"
    processIsolation="false"
    backupGlobals="false"
    syntaxCheck="true"
>   
    <testsuites>
        <testsuite name="UnitTests">
            <directory suffix="Test.php">tests/unit</directory>
        </testsuite>
    </testsuites>
    
	<filter>
	   <whitelist>
            <directory suffix=".php">src</directory>
        </whitelist>
	</filter>

    <logging>
        <log type="coverage-html" target="./build" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
    </logging>
    
</phpunit>
