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

phpunit.xml « tests - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa44d41219d1d8681985906c341feda3447797a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
		 verbose="true"
		 convertDeprecationsToExceptions="true"
		>
	<testsuite name='Registration app tests'>
		<directory suffix='Test.php'>Unit</directory>
	</testsuite>
	<!-- filters for code coverage -->
	<filter>
		<whitelist>
			<directory suffix=".php">../../registration/appinfo</directory>
			<directory suffix=".php">../../registration/lib</directory>
		</whitelist>
	</filter>
</phpunit>