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