summaryrefslogtreecommitdiffstats
path: root/phpunit.xml
blob: d8ef2a6c4500c430ffbb69b70c13dcf0cc3a7a10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<phpunit
	bootstrap="tests/bootstrap.php"
	backupGlobals="false"
	colors="true"
	convertErrorsToExceptions="true"
	convertNoticesToExceptions="true"
	convertWarningsToExceptions="true"
	>
    <php>
        <env name="WP_PHPUNIT__TESTS_CONFIG" value="/var/www/html/wp-phpunit-config.php" />
    </php>
	<testsuites>
		<testsuite name="default">
			<directory suffix="Test.php">./tests/</directory>
		</testsuite>
	</testsuites>
</phpunit>