23 строки
687 B
XML
23 строки
687 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
- SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
bootstrap="bootstrap.php"
|
|
verbose="true"
|
|
convertDeprecationsToExceptions="true"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">../lib</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="./clover.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuite name="TOTP 2FA Provider">
|
|
<directory suffix="Test.php">.</directory>
|
|
</testsuite>
|
|
</phpunit>
|