PHP-Parser/phpunit.xml.dist
Markus Staab f2e037f8ea Make phpunit fail on deprecation warnings (#989)
(cherry picked from commit 4d36e9c16f4820c2ed9360bc818982f3c02a08f5)
2024-03-17 10:06:45 +01:00

22 lines
674 B
XML

<?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"
convertDeprecationsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="false"
bootstrap="./test/bootstrap.php">
<testsuites>
<testsuite name="PHPParser Test Suite">
<directory>./test/</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./lib/PhpParser/</directory>
</include>
</coverage>
</phpunit>