2014-07-19 15:37:48 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2014-09-23 22:47:55 +02:00
|
|
|
<phpunit bootstrap="./vendor/autoload.php">
|
2014-07-19 15:37:48 +02:00
|
|
|
|
|
|
|
<groups>
|
|
|
|
<exclude>
|
|
|
|
<group>SQL</group>
|
|
|
|
</exclude>
|
|
|
|
</groups>
|
|
|
|
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory>../lib</directory>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Addr Test Suite">
|
2014-09-24 19:31:27 +02:00
|
|
|
<directory suffix=".php">./test</directory>
|
2014-07-19 15:37:48 +02:00
|
|
|
</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>
|
2014-09-23 22:47:55 +02:00
|
|
|
|
2014-07-19 15:37:48 +02:00
|
|
|
</phpunit>
|