diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2015-08-09 21:19:35 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@owncloud.com> | 2015-08-26 11:54:24 +0200 |
commit | b2fbecc39fa5d0538a946244e5b85a7145cb4505 (patch) | |
tree | 8454643d22829819ef530541a0fa648b7b225e2e /apps | |
parent | 8a5c1e6d4d63b2efc2c3e8acca98043973295863 (diff) | |
download | nextcloud-server-b2fbecc39fa5d0538a946244e5b85a7145cb4505.tar.gz nextcloud-server-b2fbecc39fa5d0538a946244e5b85a7145cb4505.zip |
Empty skeleton for tests
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/tests/sharees.php | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/sharees.php b/apps/files_sharing/tests/sharees.php new file mode 100644 index 00000000000..a9e3350ceb3 --- /dev/null +++ b/apps/files_sharing/tests/sharees.php @@ -0,0 +1,50 @@ +<?php + +use OCA\Files_Sharing\API\Sharees; +use OCA\Files_sharing\Tests\TestCase; + +class ShareesTest extends TestCase { + + /** + * Properly mock all injected elements + */ + protected function setup() { + + } + + public function testArguments() { + + } + + public function testsOnlyUsers() { + + } + + public function testOnlyGroups() { + + } + + public function testRemoteAddress() { + + } + + public function testRemoteFromContacts() { + + } + + public function testAll() { + + } + + public function testSorting() { + + } + + public function testPagination() { + + } + + public function testShareWithinGroup() { + + } +} |