-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 777 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 777 Bytes
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
<?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="./tests/Unit/bootstrap.php"
verbose="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.6/phpunit.xsd"
>
<coverage>
<include>
<directory suffix=".php">./lib</directory>
</include>
<report>
<html outputDirectory="./tests/coverage"/>
</report>
</coverage>
<testsuite name="PreviewGenerator unit tests">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</phpunit>