forked from nextcloud/jsxc.nextcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
27 lines (27 loc) · 1.07 KB
/
phpunit.xml
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
<phpunit bootstrap="tests/bootstrap-unit.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="unit">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">lib</directory>
<exclude>
<directory suffix=".php">lib/ContactsMenu</directory>
<directory suffix=".php">lib/db</directory>
<!-- The following three files are tested in the integration test suite -->
<file>lib/ilock.php</file>
<file>lib/memlock.php</file>
<file>lib/dblock.php</file>
<!-- The following two files are simple wrappers around other code -->
<file>lib/command/refreshroster.php</file>
<file>lib/Migration/RefreshRoster.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>