mirror of
https://github.com/chinayin/ip2region-sdk-php.git
synced 2025-04-04 21:09:52 +08:00
28 lines
702 B
XML
28 lines
702 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
bootstrap="./tests/bootstrap.php"
|
|
colors="true"
|
|
failOnRisky="true"
|
|
failOnWarning="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="All">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
<exclude>
|
|
<directory>src/data</directory>
|
|
</exclude>
|
|
<report>
|
|
<clover outputFile="clover.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<php>
|
|
<env name="XDB_PATH" value="../assets/ip2region.xdb"/>
|
|
</php>
|
|
</phpunit>
|