<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
         bootstrap="vendor/autoload.php"
         cacheDirectory=".phpunit.cache">
    <coverage>
        <report>
            <cobertura outputFile="tests/coverage.latest/coverage.xml"/>
        </report>
    </coverage>
    <testsuites>
        <testsuite name="unit tests">
            <directory>tests</directory>
        </testsuite>
    </testsuites>
    <logging/>
    <source>
        <include>
            <directory>./src/</directory>
        </include>
    </source>
</phpunit>
