1
0
mirror of https://github.com/owncloudarchive/contacts.git synced 2024-12-02 14:24:10 +01:00
OwncloudContactsOfficial/tests/phpunit.xml

29 lines
811 B
XML
Raw Normal View History

<?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>
2013-08-19 17:55:47 +02:00
</phpunit>