2015-02-11 19:33:33 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<phpunit bootstrap="bootstrap.php"
|
|
|
|
verbose="true"
|
|
|
|
timeoutForSmallTests="900"
|
|
|
|
timeoutForMediumTests="900"
|
|
|
|
timeoutForLargeTests="900"
|
|
|
|
>
|
2013-08-20 19:02:36 +02:00
|
|
|
<testsuites>
|
2013-08-26 20:10:29 +02:00
|
|
|
<testsuite name="unit-tests">
|
2015-02-11 19:33:33 +01:00
|
|
|
<directory suffix=".php">unit</directory>
|
2013-08-20 19:02:36 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2015-02-11 19:33:33 +01:00
|
|
|
<!-- filters for code coverage -->
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">../../contacts</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">../../contacts/l10n</directory>
|
|
|
|
<directory suffix=".php">../../contacts/templates</directory>
|
|
|
|
<directory suffix=".php">../../contacts/tests</directory>
|
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
|
|
|
<!-- and this is where your report will be written -->
|
|
|
|
<log type="coverage-clover" target="./clover.xml"/>
|
|
|
|
</logging>
|
2013-08-19 17:55:47 +02:00
|
|
|
</phpunit>
|