Yaffs site version 1.1
[yaffs-website] / vendor / caxy / php-htmldiff / phpunit.xml.dist
1 <?xml version="1.0" encoding="utf-8"?>
2 <phpunit backupGlobals="false"
3          backupStaticAttributes="false"
4          colors="true"
5          convertErrorsToExceptions="true"
6          convertNoticesToExceptions="true"
7          convertWarningsToExceptions="true"
8          processIsolation="false"
9          stopOnFailure="false"
10          syntaxCheck="false"
11          bootstrap="./tests/Caxy/Tests/TestInit.php"
12 >
13
14     <groups>
15         <exclude>
16             <group>performance</group>
17         </exclude>
18     </groups>
19
20     <testsuites>
21         <testsuite name="php-htmldiff Test Suite">
22             <directory>./tests/Caxy/Tests/HtmlDiff</directory>
23         </testsuite>
24     </testsuites>
25
26     <filter>
27         <whitelist processUncoveredFilesFromWhitelist="true">
28             <directory suffix=".php">./lib</directory>
29         </whitelist>
30     </filter>
31
32 </phpunit>