aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/traits/usertrait.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/lib/traits/usertrait.php')
-rw-r--r--tests/lib/traits/usertrait.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/lib/traits/usertrait.php b/tests/lib/traits/usertrait.php
deleted file mode 100644
index 229087a5200..00000000000
--- a/tests/lib/traits/usertrait.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/**
- * Copyright (c) 2015 Robin Appelman <icewind@owncloud.com>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-namespace Test\Traits;
-
-/**
- * Allow creating users in a temporary backend
- */
-trait UserTrait {
- /**
- * @var \Test\Util\User\Dummy|\OCP\UserInterface
- */
- protected $userBackend;
-
- protected function createUser($name, $password) {
- $this->userBackend->createUser($name, $password);
- }
-
- protected function setUpUserTrait() {
- $this->userBackend = new \Test\Util\User\Dummy();
- \OC::$server->getUserManager()->registerBackend($this->userBackend);
- }
-
- protected function tearDownUserTrait() {
- \OC::$server->getUserManager()->removeBackend($this->userBackend);
- }
-}