update to PHP-8.1
[m6w6/seekat] / phpunit.xml.dist
1 <?xml version="1.0"?>
2 <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" stopOnRisky="true" colors="true" printerClass="CombinedTestdoxPrinter" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
3 <coverage processUncoveredFiles="true">
4 <include>
5 <directory suffix=".php">lib</directory>
6 </include>
7 <report>
8 <clover outputFile="clover.xml"/>
9 <html outputDirectory="code-coverage-report"/>
10 </report>
11 </coverage>
12 <testsuites>
13 <testsuite name="seekat tests">
14 <directory>tests</directory>
15 </testsuite>
16 </testsuites>
17 <listeners>
18 <listener class="DebugLogListener"/>
19 <listener class="TestdoxListener"/>
20 </listeners>
21 <logging/>
22 </phpunit>