drupal_composer_builder/phpunit.xml
Eric BELLOT ea929fcaa9 Allow key deletion. Replace overridden indexed arrays (no merge).
- Fixed parameter errors, coverage analysis, add phpstan.
- Remove unused code, clarify mergeDeepArray difference from Drupal.
2021-09-19 12:42:50 +02:00

33 lines
921 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"
colors="true"
verbose="true"
cacheResultFile=".phpunit.cache/test-results"
failOnRisky="true"
failOnWarning="true">
<testsuites>
<testsuite name="unit">
<directory>tests</directory>
</testsuite>
</testsuites>
<coverage cacheDirectory=".phpunit.cache/code-coverage"
processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true">
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</coverage>
<php>
<ini name="precision" value="14"/>
<ini name="serialize_precision" value="14"/>
<const name="PHPUNIT_TESTSUITE" value="true"/>
</php>
</phpunit>