mirror of
https://github.com/owncloud/bookmarks.git
synced 2025-01-21 17:52:10 +01:00
ae81b9dcd2
Dependency Injection for user and db is used througout the controllers The Routing features a consistent rest api The Routing provides some legacy routes, so that for exampe the Android Bookmarks App still works. There is a publicly available api that provides access to bookmarks per user. (This is usefull in connection with the WP Plugin https://github.com/mario-nolte/oc2wp-bookmarks)
28 lines
753 B
XML
28 lines
753 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<phpunit bootstrap="bootstrap.php"
|
|
strict="true"
|
|
verbose="true"
|
|
timeoutForSmallTests="900"
|
|
timeoutForMediumTests="900"
|
|
timeoutForLargeTests="900"
|
|
>
|
|
<testsuite name='ownCloud - Bookmarks App Tests'>
|
|
<directory suffix='test.php'>.</directory>
|
|
</testsuite>
|
|
<!-- filters for code coverage -->
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">../../bookmarks</directory>
|
|
<exclude>
|
|
<directory suffix=".php">../../bookmarks/l10n</directory>
|
|
<directory suffix=".php">../../bookmarks/tests</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<!-- and this is where your report will be written -->
|
|
<log type="coverage-clover" target="./clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|
|
|