2017-01-09 19:08:01 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2023-03-11 16:27:07 +00:00
|
|
|
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
|
2017-01-09 19:08:01 +00:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2023-03-11 16:27:07 +00:00
|
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
2017-01-09 19:08:01 +00:00
|
|
|
backupGlobals="false"
|
|
|
|
colors="true"
|
2023-03-11 16:27:07 +00:00
|
|
|
bootstrap="tests/bootstrap.php"
|
|
|
|
convertDeprecationsToExceptions="false"
|
2017-01-09 19:08:01 +00:00
|
|
|
>
|
|
|
|
<php>
|
2023-03-11 16:27:07 +00:00
|
|
|
<ini name="display_errors" value="1" />
|
2017-01-09 19:08:01 +00:00
|
|
|
<ini name="error_reporting" value="-1" />
|
2023-03-11 16:27:07 +00:00
|
|
|
<server name="APP_ENV" value="test" force="true" />
|
|
|
|
<server name="SHELL_VERBOSITY" value="-1" />
|
|
|
|
<server name="SYMFONY_PHPUNIT_REMOVE" value="" />
|
|
|
|
<server name="SYMFONY_PHPUNIT_VERSION" value="9.5" />
|
2017-01-09 19:08:01 +00:00
|
|
|
</php>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Project Test Suite">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
2023-03-11 16:27:07 +00:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
|
2019-02-15 21:55:43 +00:00
|
|
|
<listeners>
|
2023-03-11 16:27:07 +00:00
|
|
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener" />
|
2019-02-15 21:55:43 +00:00
|
|
|
</listeners>
|
|
|
|
|
2023-03-11 16:27:07 +00:00
|
|
|
<!-- Run `composer require symfony/panther` before enabling this extension -->
|
|
|
|
<!--
|
|
|
|
<extensions>
|
|
|
|
<extension class="Symfony\Component\Panther\ServerExtension" />
|
|
|
|
</extensions>
|
|
|
|
-->
|
|
|
|
</phpunit>
|