29 lines
780 B
XML
29 lines
780 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit bootstrap="vendor/autoload.php">
|
||
|
<testsuite name="authLdap Test-Suite">
|
||
|
<directory>tests</directory>
|
||
|
</testsuite>
|
||
|
|
||
|
<groups>
|
||
|
<exclude>
|
||
|
<group>disable</group>
|
||
|
</exclude>
|
||
|
</groups>
|
||
|
<listeners>
|
||
|
<listener class="\Mockery\Adapter\Phpunit\TestListener"></listener>
|
||
|
</listeners>
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
|
||
|
<logging>
|
||
|
<!--
|
||
|
Adapt these paths to your special needs
|
||
|
-->
|
||
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
||
|
<log type="coverage-clover" target="build/logs/clover.xml" />
|
||
|
</logging>
|
||
|
</phpunit>
|