blob: d61d6839c2e81a1854a43058d46ede2785bb8716 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
<?xml version="1.0" encoding="utf-8"?>
<!--
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
- SPDX-License-Identifier: AGPL-3.0-only
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="bootstrap.php"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
cacheDirectory=".phpunit.cache"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<testsuite name="Nextcloud files external">
<directory>../apps/files_external/tests</directory>
<!-- exclude backends as they are called separately -->
<exclude>../apps/files_external/tests/Storage/</exclude>
</testsuite>
<source>
<include>
<file>../lib/private/Files/Storage/DAV.php</file>
<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>
</phpunit>
|