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: cb67e3ce0495319e4bfa1b253d4b82b4462b401d (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>