summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2015-08-09 21:19:35 +0200
committerJoas Schilling <nickvergessen@owncloud.com>2015-08-26 11:54:24 +0200
commitb2fbecc39fa5d0538a946244e5b85a7145cb4505 (patch)
tree8454643d22829819ef530541a0fa648b7b225e2e /apps
parent8a5c1e6d4d63b2efc2c3e8acca98043973295863 (diff)
downloadnextcloud-server-b2fbecc39fa5d0538a946244e5b85a7145cb4505.tar.gz
nextcloud-server-b2fbecc39fa5d0538a946244e5b85a7145cb4505.zip
Empty skeleton for tests
Diffstat (limited to 'apps')
-rw-r--r--apps/files_sharing/tests/sharees.php50
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() {
+
+ }
+}