mirror of
https://github.com/nextcloud/registration.git
synced 2026-01-17 13:25:52 +00:00
21 lines
602 B
XML
21 lines
602 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
- SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
<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>
|