2022-02-05 20:26:32 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2022-10-08 10:43:06 +02:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
cacheResultFile=".phpunit.cache/test-results"
|
|
|
|
executionOrder="depends,defects"
|
|
|
|
forceCoversAnnotation="false"
|
|
|
|
beStrictAboutCoversAnnotation="true"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
|
|
convertDeprecationsToExceptions="true"
|
|
|
|
failOnRisky="true"
|
|
|
|
failOnWarning="true"
|
|
|
|
verbose="true">
|
2022-02-05 20:26:32 +01:00
|
|
|
<testsuites>
|
2022-10-08 10:43:06 +02:00
|
|
|
<testsuite name="default">
|
|
|
|
<directory>tests</directory>
|
2022-02-05 20:26:32 +01:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2022-10-08 10:43:06 +02:00
|
|
|
|
|
|
|
<coverage cacheDirectory=".phpunit.cache/code-coverage"
|
|
|
|
processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
</phpunit>
|