xref: /dokuwiki/_test/phpunit.xml (revision c29b8642e5a33eeae1853c0734c5a02906442aa7)
1<?xml version="1.0" encoding="UTF-8"?>
2<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         bootstrap="bootstrap.php"
4         convertNoticesToExceptions="false"
5         colors="true"
6         stderr="true"
7         backupGlobals="true"
8         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
9    <coverage includeUncoveredFiles="false">
10        <include>
11            <directory suffix=".php">../</directory>
12        </include>
13        <exclude>
14            <directory suffix=".php">../_cs/</directory>
15            <directory suffix=".php">../_test/</directory>
16            <directory suffix=".php">../lib/plugins/*/_test/</directory>
17            <directory suffix=".php">../lib/tpl/*/_test/</directory>
18        </exclude>
19    </coverage>
20    <testsuites>
21        <testsuite name="DokuWiki Tests">
22            <directory suffix=".test.php">tests/</directory>
23            <directory suffix="Test.php">tests/</directory>
24        </testsuite>
25        <testsuite name="Plugin Tests">
26            <directory suffix=".test.php">../lib/plugins/*/_test/</directory>
27            <directory suffix="Test.php">../lib/plugins/*/_test/</directory>
28        </testsuite>
29        <testsuite name="Template Tests">
30            <directory suffix=".test.php">../lib/tpl/*/_test/</directory>
31            <directory suffix="Test.php">../lib/tpl/*/_test/</directory>
32        </testsuite>
33    </testsuites>
34    <groups>
35        <exclude>
36            <group>flaky</group>
37        </exclude>
38    </groups>
39</phpunit>
40