richdocuments/tests/phpunit.xml
Andy Scherzinger e9a4c159fb
fix: add further SPDX headers
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-09 10:37:24 +02:00

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>