summaryrefslogtreecommitdiff
path: root/bin/wiki/vendor/addwiki/mediawiki-api/phpunit.xml.dist
blob: f674132b178288a3e390b38447eaf4791d9de114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<!-- convertWarningsToExceptions is false as real API calls can return un expected warnings -->
<phpunit
	bootstrap="./vendor/autoload.php"
	colors="true"
	convertWarningsToExceptions="false"
>
	<testsuites>
		<testsuite>
			<directory suffix="Test.php">./tests/integration</directory>
		</testsuite>
		<testsuite>
			<directory suffix="Test.php">./tests/unit</directory>
		</testsuite>
	</testsuites>
	<filter>
		<whitelist addUncoveredFilesFromWhitelist="true">
			<directory suffix=".php">./src</directory>
		</whitelist>
	</filter>
</phpunit>