]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - vendor/justinrainbow/json-schema/phpunit.xml.dist
MediaWiki 1.30.2-scripts
[autoinstalls/mediawiki.git] / vendor / justinrainbow / json-schema / 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          verbose="true"
14 >
15     <testsuites>
16         <testsuite name="JSON Schema Test Suite">
17             <directory>tests</directory>
18         </testsuite>
19     </testsuites>
20
21     <filter>
22         <whitelist>
23             <directory>./src/JsonSchema/</directory>
24         </whitelist>
25     </filter>
26 </phpunit>