Skip to content
Snippets Groups Projects
phpunit.xml 631 B
Newer Older
Taddeus Kroes's avatar
Taddeus Kroes committed
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="false"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         stopOnError="true">
	<testsuites>
		<testsuite name="WebBasics test suite">
Taddeus Kroes's avatar
Taddeus Kroes committed
			<directory prefix="test_" suffix=".php">tests</directory>
		</testsuite>
	</testsuites>
	
	<logging>
		<log type="coverage-html" target="build/coverage" charset="UTF-8" highlight="true" />
	</logging>
	
	<filter>
		<whitelist>
			<directory>.</directory>
			<exclude>
				<directory>tests</directory>
			</exclude>
		</whitelist>
	</filter>
</phpunit>