mirror of
https://github.com/nikic/PHP-Parser.git
synced 2025-01-16 22:58:15 +01:00
f2e037f8ea
(cherry picked from commit 4d36e9c16f4820c2ed9360bc818982f3c02a08f5)
22 lines
674 B
XML
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>
|