xref: /dokuwiki/_test/phpunit.xml (revision 0e748a96cda77fa0131fc0b9601de54a41592ca7)
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit
3    bootstrap="bootstrap.php"
4    convertNoticesToExceptions="false">
5
6    <testsuites>
7        <testsuite name="DokuWiki Tests">
8            <directory suffix=".test.php">tests/</directory>
9        </testsuite>
10        <testsuite name="Plugin Tests">
11            <directory suffix=".test.php">../lib/plugins/*/_test</directory>
12        </testsuite>
13        <testsuite name="Template Tests">
14            <directory suffix=".test.php">../lib/tpl/*/_test</directory>
15        </testsuite>
16    </testsuites>
17
18    <filter>
19        <whitelist addUncoveredFilesFromWhitelist="false">
20            <directory suffix=".php">../</directory>
21            <exclude>
22                <directory suffix=".php">../_cs/</directory>
23                <directory suffix=".php">../_test/</directory>
24                <directory suffix=".php">../lib/plugins/*/_test/</directory>
25                <directory suffix=".php">../lib/tpl/*/_test/</directory>
26            </exclude>
27        </whitelist>
28    </filter>
29
30</phpunit>
31