mirror of
https://github.com/danog/dns.git
synced 2024-11-26 20:14:51 +01:00
46 lines
1.2 KiB
XML
46 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit bootstrap="./vendor/autoload.php">
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>SQL</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<filter>
|
|
<blacklist>
|
|
<directory>./test</directory>
|
|
<directory>./vendor</directory>
|
|
</blacklist>
|
|
<whitelist>
|
|
<directory>./lib</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<testsuites>
|
|
<testsuite name="Addr Test Suite">
|
|
<directory suffix=".php">./test</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
|
|
<listeners>
|
|
<listener class="\Mockery\Adapter\Phpunit\TestListener"/>
|
|
</listeners>
|
|
|
|
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/> -->
|
|
|
|
<logging>
|
|
|
|
<!-- <log type="junit" target="./var/logfile.xml" logIncompleteSkipped="false"/> -->
|
|
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
|
<!-- Enabling coverage makes the tests take three times as long, as well
|
|
as take a bit of time to generate the HTML pages. -->
|
|
<log type="coverage-html" target="./coverage/" charset="UTF-8"
|
|
highlight="false" lowUpperBound="35" highLowerBound="70"/>
|
|
</logging>
|
|
|
|
</phpunit>
|