mirror of
https://github.com/nextcloud/richdocuments.git
synced 2025-12-18 05:20:43 +01:00
29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
- SPDX-FileCopyrightText: 2014-2016 ownCLoud, Inc.
|
|
- SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap.php" timeoutForSmallTests="900" timeoutForMediumTests="900" timeoutForLargeTests="900" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" cacheDirectory=".phpunit.cache">
|
|
<coverage>
|
|
<report>
|
|
<clover outputFile="./clover.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuite name="Richdocuments App Tests">
|
|
<directory suffix=".php">./lib</directory>
|
|
</testsuite>
|
|
<!-- filters for code coverage -->
|
|
<logging>
|
|
<!-- and this is where your report will be written -->
|
|
</logging>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">../../richdocuments</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory suffix=".php">../../richdocuments/l10n</directory>
|
|
<directory suffix=".php">../../richdocuments/tests</directory>
|
|
</exclude>
|
|
</source>
|
|
</phpunit>
|