<phpunit
	bootstrap="tests/bootstrap.php"
	backupGlobals="false"
	colors="true"
	convertErrorsToExceptions="true"
	convertNoticesToExceptions="true"
	convertWarningsToExceptions="true"
>
	<testsuites>
		<testsuite name="unit">
            <exclude>./tests/unit/test-model-php7.php</exclude>
			<directory prefix="test-" suffix=".php">./tests/unit/</directory>
			<file phpVersion="7.0.0">./tests/unit/test-model-php7.php</file>
		</testsuite>
		<testsuite name="integration">
			<directory prefix="test-" suffix=".php">./tests/integration/</directory>
		</testsuite>
	</testsuites>

	<whitelist processUncoveredFilesFromWhitelist="true">
		<directory suffix=".php">./src</directory>
	</whitelist>
</phpunit>