2020-03-10 17:00:55 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2021-06-18 09:59:41 +02:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2020-03-10 17:00:55 +01:00
|
|
|
bootstrap="vendor/autoload.php"
|
2021-06-18 09:59:41 +02:00
|
|
|
forceCoversAnnotation="false"
|
2020-03-10 17:00:55 +01:00
|
|
|
beStrictAboutCoversAnnotation="true"
|
|
|
|
beStrictAboutOutputDuringTests="true"
|
|
|
|
beStrictAboutTodoAnnotatedTests="true"
|
2021-06-18 09:59:41 +02:00
|
|
|
verbose="true"
|
|
|
|
>
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">src</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="default">
|
|
|
|
<directory suffix="Test.php">tests/unit</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2020-03-10 17:00:55 +01:00
|
|
|
</phpunit>
|