ce773278553adac1f7f150e41cd9531d62f3b10d
[yaffs-website] / vendor / twig / twig / phpunit.xml.dist
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <phpunit backupGlobals="false"
4          backupStaticAttributes="false"
5          colors="true"
6          convertErrorsToExceptions="true"
7          convertNoticesToExceptions="true"
8          convertWarningsToExceptions="true"
9          processIsolation="false"
10          stopOnFailure="false"
11          syntaxCheck="false"
12          bootstrap="vendor/autoload.php"
13 >
14   <testsuites>
15     <testsuite name="Twig Test Suite">
16       <directory>./test/Twig/</directory>
17     </testsuite>
18   </testsuites>
19
20   <php>
21     <ini name="error_reporting" value="-1" />
22   </php>
23
24   <listeners>
25     <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
26   </listeners>
27
28   <filter>
29     <whitelist>
30       <directory suffix=".php">./lib/Twig/</directory>
31     </whitelist>
32   </filter>
33 </phpunit>