2025-05-30 20:57:14 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2025-06-12 10:25:56 +08:00
|
|
|
<phpunit bootstrap="./vendor/autoload.php"
|
2025-05-30 20:57:14 +08:00
|
|
|
colors="true"
|
|
|
|
verbose="true">
|
2025-06-03 15:14:38 +08:00
|
|
|
<php>
|
|
|
|
<env name="PHPUNIT_RUNNING" value="1" />
|
|
|
|
</php>
|
|
|
|
|
2025-05-30 20:57:14 +08:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Default">
|
|
|
|
<directory>tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory>./src</directory>
|
|
|
|
</include>
|
|
|
|
<report>
|
|
|
|
<clover outputFile="coverage.xml"/>
|
|
|
|
</report>
|
|
|
|
</coverage>
|
|
|
|
</phpunit>
|