Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpunit.xml « tests - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5a686c3020688512d2dc84bd0094088f472c2ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php">
	<testsuite name='ownCloud'>
		<directory suffix='.php'>lib/</directory>
		<file>apps.php</file>
	</testsuite>
	<!-- filters for code coverage -->
	<whitelist processUncoveredFilesFromWhitelist="true">
		<directory suffix=".php">..</directory>
		<exclude>
			<directory suffix=".php">../3rdparty</directory>
		</exclude>
	</whitelist>
	<listeners>
		<listener class="PHPUnit_Util_Log_JSON"></listener>
	</listeners>
</phpunit>