summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--apps/files_sharing/tests/permissions.php36
1 files changed, 36 insertions, 0 deletions
diff --git a/apps/files_sharing/tests/permissions.php b/apps/files_sharing/tests/permissions.php
index 0a222b08512..bff71095185 100644
--- a/apps/files_sharing/tests/permissions.php
+++ b/apps/files_sharing/tests/permissions.php
@@ -19,13 +19,49 @@
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
+use OC\Files\Cache\Cache;
+use OC\Files\Storage\Storage;
+use OC\Files\View;
+
require_once __DIR__ . '/base.php';
class Test_Files_Sharing_Permissions extends Test_Files_Sharing_Base {
+ /**
+ * @var Storage
+ */
private $sharedStorageRestrictedShare;
+
+ /**
+ * @var Storage
+ */
private $sharedCacheRestrictedShare;
+ /**
+ * @var View
+ */
+ private $secondView;
+
+ /**
+ * @var Storage
+ */
+ private $ownerStorage;
+
+ /**
+ * @var Storage
+ */
+ private $sharedStorage;
+
+ /**
+ * @var Cache
+ */
+ private $sharedCache;
+
+ /**
+ * @var Cache
+ */
+ private $ownerCache;
+
function setUp() {
parent::setUp();