translation update
[dokuwiki.git] / _test / phpunit.xml
blobf4b88be9c6f3f1b7e648222c52fd0c7660c68561
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit
3     bootstrap="bootstrap.php"
4     convertNoticesToExceptions="false"
5     colors="true"
6     stderr="true"
7     backupGlobals="true"
8     >
10     <testsuites>
11         <testsuite name="DokuWiki Tests">
12             <directory suffix=".test.php">tests/</directory>
13         </testsuite>
14         <testsuite name="Plugin Tests">
15             <directory suffix=".test.php">../lib/plugins/*/_test</directory>
16         </testsuite>
17         <testsuite name="Template Tests">
18             <directory suffix=".test.php">../lib/tpl/*/_test</directory>
19         </testsuite>
20     </testsuites>
22     <groups>
23         <exclude>
24             <group>flaky</group>
25         </exclude>
26     </groups>
28     <filter>
29         <whitelist addUncoveredFilesFromWhitelist="false">
30             <directory suffix=".php">../</directory>
31             <exclude>
32                 <directory suffix=".php">../_cs/</directory>
33                 <directory suffix=".php">../_test/</directory>
34                 <directory suffix=".php">../lib/plugins/*/_test/</directory>
35                 <directory suffix=".php">../lib/tpl/*/_test/</directory>
36             </exclude>
37         </whitelist>
38     </filter>
40 </phpunit>