2022-07-02 14:01:51 +00:00
|
|
|
<?xml version="1.0"?>
|
2021-02-26 16:16:17 +00:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2022-07-02 14:01:51 +00:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
|
2021-02-26 16:16:17 +00:00
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
cacheResultFile=".build/phpunit.result.cache"
|
|
|
|
colors="true"
|
|
|
|
verbose="true"
|
|
|
|
>
|
2022-07-02 14:01:51 +00:00
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
2021-02-26 16:16:17 +00:00
|
|
|
<directory suffix=".php">./src</directory>
|
2022-07-02 14:01:51 +00:00
|
|
|
</include>
|
|
|
|
<report>
|
|
|
|
<clover outputFile=".build/coverage/clover.xml"/>
|
|
|
|
<xml outputDirectory=".build/coverage/coverage-xml"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
2021-02-26 16:16:17 +00:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="php-qrcode test suite">
|
|
|
|
<directory suffix=".php">./tests/</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<logging>
|
2022-07-02 14:01:51 +00:00
|
|
|
<junit outputFile=".build/logs/junit.xml"/>
|
2021-02-26 16:16:17 +00:00
|
|
|
</logging>
|
|
|
|
</phpunit>
|