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

phpunit.xml - github.com/nextcloud/passman.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3f796278306d0d3c049a0e63319f268e8577e9dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<phpunit bootstrap="tests/bootstrap.php" colors="true">
    <testsuites>
        <testsuite name="unit">
            <directory>./tests/unit</directory>
            <exclude>./tests/unit/lib/Db</exclude>
        </testsuite>
    </testsuites>
    <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./lib/Utility</directory>
            <directory suffix=".php">./lib/BackgroundJob</directory>
            <directory suffix=".php">./controller</directory>

            <!--<file>/path/to/file</file>-->
            <!--<exclude>-->
            <!--<directory suffix=".php">/path/to/dir</directory>-->
            <!--<file>/path/to/file</file>-->
            <!--</exclude>-->
        </whitelist>

    </filter>
</phpunit>