xref: /PHP-Parser/phpunit.xml.dist (revision f2e037f8)
1<?xml version="1.0" encoding="UTF-8"?>
2
3<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4         xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5         backupGlobals="false"
6         colors="true"
7         convertDeprecationsToExceptions="true"
8         beStrictAboutTestsThatDoNotTestAnything="false"
9         bootstrap="./test/bootstrap.php">
10    <testsuites>
11        <testsuite name="PHPParser Test Suite">
12            <directory>./test/</directory>
13        </testsuite>
14    </testsuites>
15
16    <coverage>
17        <include>
18            <directory suffix=".php">./lib/PhpParser/</directory>
19        </include>
20    </coverage>
21</phpunit>
22