<?xml version="1.0"?>
<phpunit
		 backupGlobals="false"
		 backupStaticAttributes="false"
		 colors="true"
		 processIsolation="false"
		 convertErrorsToExceptions="true"
		 convertNoticesToExceptions="true"
		 convertWarningsToExceptions="true"
		 stopOnError="false"
		 stopOnFailure="false"
		 stopOnIncomplete="false"
		 stopOnSkipped="false"
		 syntaxCheck="false"
		 verbose="true"
		 strict="false"
		 bootstrap="tests/bootstrap.php">
	<testsuites>
		<!-- Default test suite to run all tests. -->
		<testsuite>
			<directory prefix="test-" suffix=".php">./tests/</directory>
		</testsuite>
	</testsuites>
	<logging>
		<log type="coverage-html" target="coverage" title="PHPUnit" charset="UTF-8" yui="true" highlight="true" />
	</logging>
</phpunit>