<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
         backupStaticAttributes="false"
         bootstrap="tests/unit.bootstrap.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="false"
         stopOnFailure="false"
         syntaxCheck="false">
		<logging>
 				<log type="coverage-php" target="coverage-unit.cov" lowUpperBound="35" highLowerBound="70"/>
 		</logging>
 		<filter>
 				<whitelist processUncoveredFilesFromWhitelist="true">
 						<directory suffix=".php">src</directory>
 				</whitelist>
 		</filter>
    <testsuites>
        <testsuite>
            <directory>./tests/UnitTests</directory>
        </testsuite>
    </testsuites>
</phpunit>
