<phpunit
	bootstrap="tests/bootstrap.php"
	backupGlobals="false"
	colors="true"
	convertErrorsToExceptions="true"
	convertNoticesToExceptions="true"
	convertWarningsToExceptions="true"
	printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer"
	>
	<testsuites>
		<testsuite name="unit">
			<directory prefix="tests-" suffix=".php">./tests/</directory>
		</testsuite>
		<testsuite name="unit">
			<directory suffix="Test.php">./tests/</directory>
		</testsuite>
	</testsuites>

	<filter>
		<whitelist processUncoveredFilesFromWhitelist="true">
			<directory suffix=".php">includes</directory>
			<file>edd-all-access.php</file>
			<exclude>
				<file>./includes/admin/all-access-passes-page.php</file>
				<directory>./templates</directory>
			</exclude>
		</whitelist>
	</filter>

</phpunit>
