Version 1
[yaffs-website] / vendor / dnoegel / php-xdg-base-dir / phpunit.xml.dist
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit colors="true"
4          convertErrorsToExceptions="true"
5          convertNoticesToExceptions="true"
6          convertWarningsToExceptions="true"
7          processIsolation="false"
8          stopOnFailure="false"
9          syntaxCheck="false"
10          bootstrap="vendor/autoload.php"
11         >
12
13     <testsuites>
14         <testsuite name="php-xdg-base-dir unit tests">
15             <directory>./tests/</directory>
16         </testsuite>
17     </testsuites>
18
19     <filter>
20         <whitelist>
21             <directory>./src/</directory>
22         </whitelist>
23     </filter>
24 </phpunit>