summaryrefslogtreecommitdiff
path: root/_test/phpunit.xml
blob: 13676f207c71f1cde3ca081ac86d401b3b1cf4c3 (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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
    bootstrap="bootstrap.php"
    convertNoticesToExceptions="false">

    <testsuites>
        <testsuite name="DokuWiki Tests">
            <directory suffix=".test.php">tests/</directory>
        </testsuite>
        <testsuite name="Plugin Tests">
            <directory suffix=".test.php">../lib/plugins/*/_test</directory>
        </testsuite>
    </testsuites>

    <filter>
        <whitelist addUncoveredFilesFromWhitelist="false">
            <directory suffix=".php">../</directory>
            <exclude>
                <directory suffix=".php">../_cs/</directory>
                <directory suffix=".php">../_test/</directory>
                <directory suffix=".php">../lib/plugins/*/_test/</directory>
            </exclude>
        </whitelist>
    </filter>

</phpunit>