2014-10-23 18:45:46 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<phpunit bootstrap="bootstrap.php"
|
|
|
|
verbose="true"
|
|
|
|
timeoutForSmallTests="900"
|
|
|
|
timeoutForMediumTests="900"
|
|
|
|
timeoutForLargeTests="900"
|
|
|
|
>
|
2016-03-15 00:13:55 +01:00
|
|
|
<testsuite name='ownCloud - Richdocuments App Tests'>
|
2014-10-23 18:45:46 +03:00
|
|
|
<directory suffix='test.php'>.</directory>
|
|
|
|
</testsuite>
|
|
|
|
<!-- filters for code coverage -->
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2015-12-16 18:31:08 +03:00
|
|
|
<directory suffix=".php">../../richdocuments</directory>
|
2014-10-23 18:45:46 +03:00
|
|
|
<exclude>
|
2015-12-16 18:31:08 +03:00
|
|
|
<directory suffix=".php">../../richdocuments/l10n</directory>
|
|
|
|
<directory suffix=".php">../../richdocuments/tests</directory>
|
2014-10-23 18:45:46 +03:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<logging>
|
|
|
|
<!-- and this is where your report will be written -->
|
|
|
|
<log type="coverage-clover" target="./clover.xml"/>
|
|
|
|
</logging>
|
2016-03-15 00:13:55 +01:00
|
|
|
</phpunit>
|