phpunit.xml.dist
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
bootstrap="./tests/tests_bootstrap.php" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false"
processIsolation="false" backupGlobals="false" colors="true">
<coverage includeUncoveredFiles="true" processUncoveredFiles="false">
<include>
<directory>./DrdPlus</directory>
</include>
</coverage>
<testsuites>
<testsuite name="all">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>