1
0
mirror of https://github.com/danog/dns.git synced 2024-11-27 04:24:48 +01:00
dns/test/phpunit.xml
Danack a50369e71e Tests, Travis and Cache implementations
- Add tests
 - Configure repo for use with Travis
 - Add some more Cache implementations
2014-07-21 12:24:35 +01:00

42 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./testBootstrap.php">
<groups>
<exclude>
<group>SQL</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory>../lib</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="Addr Test Suite">
<directory suffix=".php">./AddrTest/</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>