Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpunit.xml - github.com/nextcloud/jsxc.nextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6bced89c8729db6b7702d0c8efc50dac7cba392 (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
<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>