<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
         beStrictAboutTestsThatDoNotTestAnything="false"
         backupStaticAttributes="false"
		 bootstrap="vendor/autoload.php"
         colors="true"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         processIsolation="true"
         stopOnError="false"
         stopOnFailure="false">
		<testsuites>
			<testsuite name="Feature Tests">
				<directory suffix="Test.php">./tests</directory>
			</testsuite>
		</testsuites>
		<filter>
			<whitelist>
				<directory suffix=".php">src/</directory>
			</whitelist>
		</filter>
		<logging>
			<log type="coverage-html" target="coverage-report" lowUpperBound="35" highLowerBound="70" />
			<log type="coverage-clover" target="coverage-report/coverage.xml"/>
		</logging>
</phpunit>
 
  |