1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-11-29 11:24:11 +01:00
OwncloudContactsOfficial/tests/phpunit.xml
2015-07-06 21:16:15 +02:00

29 lines
811 B
XML

<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
verbose="true"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
<testsuites>
<testsuite name="unit-tests">
<directory suffix=".php">unit</directory>
</testsuite>
</testsuites>
<!-- 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>
</phpunit>