2011-07-13 12:24:10 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
colors="false"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
syntaxCheck="false"
|
2017-04-27 18:20:12 +02:00
|
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
2015-06-20 11:43:16 +02:00
|
|
|
bootstrap="./test/bootstrap.php">
|
2011-07-13 12:24:10 +02:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="PHPParser Test Suite">
|
2011-08-10 11:13:37 +02:00
|
|
|
<directory>./test/</directory>
|
2011-07-13 12:24:10 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2014-02-12 17:39:57 +01:00
|
|
|
<directory suffix=".php">./lib/PhpParser/</directory>
|
2011-07-13 12:24:10 +02:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2015-06-20 11:43:16 +02:00
|
|
|
</phpunit>
|