Skip to content
Snippets Groups Projects
phpunit.xml 386 B
Newer Older
Erick Hitter's avatar
Erick Hitter committed
<?xml version="1.0"?>
<phpunit
	bootstrap="tests/bootstrap.php"
	backupGlobals="false"
	colors="true"
	convertErrorsToExceptions="true"
	convertNoticesToExceptions="true"
	convertWarningsToExceptions="true"
	>
	<testsuites>
Erick Hitter's avatar
Erick Hitter committed
		<testsuite name="wpruss">
Erick Hitter's avatar
Erick Hitter committed
			<directory suffix=".php">./tests/</directory>
			<exclude>./tests/bootstrap.php</exclude>
Erick Hitter's avatar
Erick Hitter committed
		</testsuite>
	</testsuites>
</phpunit>