2025-05-23 14:17:28 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-05-10 09:09:14 -04:00
|
|
|
<!--
|
2025-05-23 14:17:28 -04:00
|
|
|
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
2024-05-10 09:09:14 -04:00
|
|
|
- SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
|
|
|
|
|
- SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
-->
|
2025-05-23 14:17:28 -04:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
|
bootstrap="bootstrap.php"
|
2014-11-14 05:06:59 -05:00
|
|
|
timeoutForSmallTests="900"
|
|
|
|
|
timeoutForMediumTests="900"
|
|
|
|
|
timeoutForLargeTests="900"
|
2025-05-23 14:17:28 -04:00
|
|
|
cacheDirectory=".phpunit.cache"
|
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
|
|
|
|
|
<testsuite name="Nextcloud files external">
|
2025-05-22 14:43:12 -04:00
|
|
|
<directory>../apps/files_external/tests</directory>
|
2014-11-14 05:06:59 -05:00
|
|
|
<!-- exclude backends as they are called separately -->
|
2016-05-25 09:14:37 -04:00
|
|
|
<exclude>../apps/files_external/tests/Storage/</exclude>
|
2014-11-14 05:06:59 -05:00
|
|
|
</testsuite>
|
2025-05-23 14:17:28 -04:00
|
|
|
<source>
|
|
|
|
|
<include>
|
2016-05-25 09:14:37 -04:00
|
|
|
<file>../lib/private/Files/Storage/DAV.php</file>
|
2025-05-23 14:17:28 -04:00
|
|
|
<directory>../apps/files_external</directory>
|
|
|
|
|
</include>
|
|
|
|
|
<exclude>
|
|
|
|
|
<directory>../apps/files_external/l10n</directory>
|
|
|
|
|
<directory>../apps/files_external/3rdparty</directory>
|
|
|
|
|
<directory>../apps/files_external/tests</directory>
|
|
|
|
|
</exclude>
|
|
|
|
|
</source>
|
2014-11-14 05:06:59 -05:00
|
|
|
</phpunit>
|