21 lines
516 B
XML
21 lines
516 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./tests/bootstrap.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="GeoIP2 Test Suite">
|
|
<directory suffix="Test.php">./tests/GeoIp2/Test/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src/GeoIp2/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
|
|
</phpunit>
|