Files
archived-collections/phpunit.xml.dist
Matthias Pigulla 704ff97f3d Fix reporting of deprecations in tests
Because the de-duplication of deprecation notices was disabled by default, not all actual deprecations were reported after #473.
2025-10-22 18:11:07 +02:00

25 lines
706 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"
beStrictAboutOutputDuringTests="true"
failOnDeprecation="true"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="Doctrine Collections Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<php>
<server name="DOCTRINE_DEPRECATIONS" value="trigger"/>
</php>
<source ignoreSuppressionOfDeprecations="true">
<include>
<directory>./src/</directory>
</include>
</source>
</phpunit>