mirror of
https://github.com/doctrine/collections.git
synced 2026-03-23 22:22:10 +01:00
Because the de-duplication of deprecation notices was disabled by default, not all actual deprecations were reported after #473.
25 lines
706 B
XML
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>
|