php-parser/phpunit.xml.dist

21 lines
626 B
Plaintext
Raw Normal View History

2011-07-13 12:24:10 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
colors="true"
2017-04-27 18:20:12 +02:00
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="./test/bootstrap.php">
2011-07-13 12:24:10 +02:00
<testsuites>
<testsuite name="PHPParser Test Suite">
<directory>./test/</directory>
2011-07-13 12:24:10 +02:00
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./lib/PhpParser/</directory>
2011-07-13 12:24:10 +02:00
</whitelist>
</filter>
</phpunit>