2013-02-05 23:20:55 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2013-06-10 11:31:22 +04:00
|
|
|
<phpunit bootstrap="bootstrap.php"
|
|
|
|
strict="true"
|
2013-07-25 04:43:50 +04:00
|
|
|
verbose="true"
|
2017-02-10 18:20:25 +03:00
|
|
|
backupGlobals="false"
|
2013-06-12 14:58:25 +04:00
|
|
|
timeoutForSmallTests="900"
|
|
|
|
timeoutForMediumTests="900"
|
2013-06-11 17:57:00 +04:00
|
|
|
timeoutForLargeTests="900"
|
2013-06-10 11:31:22 +04:00
|
|
|
>
|
2013-02-05 23:20:55 +04:00
|
|
|
<testsuite name='ownCloud'>
|
|
|
|
<directory suffix='.php'>lib/</directory>
|
2016-08-15 18:00:35 +03:00
|
|
|
<directory suffix='.php'>Settings/</directory>
|
|
|
|
<directory suffix='.php'>Core/</directory>
|
2016-08-25 08:13:48 +03:00
|
|
|
<directory suffix='.php'>ocs-provider/</directory>
|
2013-02-05 23:20:55 +04:00
|
|
|
<file>apps.php</file>
|
|
|
|
</testsuite>
|
|
|
|
<!-- filters for code coverage -->
|
2013-06-03 02:59:04 +04:00
|
|
|
<filter>
|
|
|
|
<!-- whitelist processUncoveredFilesFromWhitelist="true" -->
|
|
|
|
<whitelist>
|
2016-02-16 16:21:28 +03:00
|
|
|
<directory suffix=".php">..</directory>
|
2013-06-03 02:59:04 +04:00
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">../3rdparty</directory>
|
2018-01-25 15:44:47 +03:00
|
|
|
<directory suffix=".php">../apps/admin_audit/tests</directory>
|
2016-02-16 16:21:28 +03:00
|
|
|
<directory suffix=".php">../apps/dav/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/encryption/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/federatedfilesharing/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/federation/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/files/tests</directory>
|
2014-12-03 18:38:25 +03:00
|
|
|
<directory suffix=".php">../apps/files_external</directory>
|
2016-02-16 16:21:28 +03:00
|
|
|
<directory suffix=".php">../apps/files_sharing/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/files_trashbin/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/files_versions/tests</directory>
|
2017-05-18 20:09:59 +03:00
|
|
|
<directory suffix=".php">../apps/oauth2/tests</directory>
|
2015-06-01 21:42:32 +03:00
|
|
|
<directory suffix=".php">../apps/provisioning_api/tests</directory>
|
2016-10-05 13:05:23 +03:00
|
|
|
<directory suffix=".php">../apps/systemtags/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/theming/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/twofactor_backupcodes/tests</directory>
|
2016-02-16 16:21:28 +03:00
|
|
|
<directory suffix=".php">../apps/updatenotification/tests</directory>
|
|
|
|
<directory suffix=".php">../apps/user_ldap/tests</directory>
|
2016-10-05 13:05:23 +03:00
|
|
|
<directory suffix=".php">../apps/workflowengine/tests</directory>
|
2013-06-14 17:42:54 +04:00
|
|
|
<directory suffix=".php">../tests</directory>
|
2016-02-16 16:21:28 +03:00
|
|
|
<directory suffix=".php">../build</directory>
|
2016-10-05 13:05:23 +03:00
|
|
|
<directory suffix=".php">../lib/composer</directory>
|
2018-10-01 12:47:11 +03:00
|
|
|
<directory suffix=".php">../apps/*/composer</directory>
|
2013-06-03 02:59:04 +04:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2013-12-19 23:18:09 +04:00
|
|
|
<listeners>
|
2014-03-13 19:19:17 +04:00
|
|
|
<listener class="StartSessionListener" file="startsessionlistener.php" />
|
2013-12-19 23:18:09 +04:00
|
|
|
</listeners>
|
2013-02-05 23:20:55 +04:00
|
|
|
</phpunit>
|
2013-06-04 02:04:17 +04:00
|
|
|
|