<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.readthedocs.io/en/latest/configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" backupGlobals="false" colors="true"
         bootstrap="tests/bootstrap.php">
    <coverage processUncoveredFiles="true">
        <include>
            <directory suffix=".php">src</directory>
        </include>
    </coverage>
    <php>
        <ini name="display_errors" value="1" />
        <ini name="error_reporting" value="-1"/>
        <server name="APP_ENV" value="test" force="true"/>
        <server name="KERNEL_CLASS" value="App\Kernel"/>
        <server name="SHELL_VERBOSITY" value="-1"/>
        <server name="SYMFONY_PHPUNIT_REMOVE" value=""/>
        <server name="SYMFONY_PHPUNIT_VERSION" value="7.5"/>
        <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
        <const name="CDN_URL" value="https:/cdnv-acc.cx9.de:8443/master/"/>
        <const name="AUTHCODE" value="cx9systems/ACC"/>
        <const name="REQUEST_ID" value="unit-test"/>
        <const name="LANGUAGE" value="DE"/>
    </php>
    <testsuite name="Unit">
        <directory>./tests/Unit</directory>
    </testsuite>
     <testsuite name="Integration">
        <directory>./tests/Integration</directory>
    </testsuite>
    <listeners>
        <listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"/>
    </listeners>
</phpunit>
