diff options
author | Joas Schilling <coding@schilljs.com> | 2016-09-06 14:18:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-06 14:18:57 +0200 |
commit | 6a6af86a1ca14e8b803d7cd8653733842e21d25f (patch) | |
tree | 37af6b38deb4ead471847261355dc9ef72287231 /apps/files_sharing | |
parent | 45a84f362333e8055227ea800bf67a8ea431f3d5 (diff) | |
parent | c609e291bd5dce6976defc0537cdf48a3cc3528b (diff) | |
download | nextcloud-server-6a6af86a1ca14e8b803d7cd8653733842e21d25f.tar.gz nextcloud-server-6a6af86a1ca14e8b803d7cd8653733842e21d25f.zip |
Merge pull request #1242 from nextcloud/bump_phpunit
Bump phpunit
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/tests/MountProviderTest.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/apps/files_sharing/tests/MountProviderTest.php b/apps/files_sharing/tests/MountProviderTest.php index 576f05d565d..0be74a645a9 100644 --- a/apps/files_sharing/tests/MountProviderTest.php +++ b/apps/files_sharing/tests/MountProviderTest.php @@ -25,10 +25,12 @@ namespace OCA\Files_Sharing\Tests; use OCA\Files_Sharing\MountProvider; +use OCP\Files\IRootFolder; use OCP\Files\Storage\IStorageFactory; use OCP\IConfig; use OCP\ILogger; use OCP\IUser; +use OCP\IUserManager; use OCP\Share\IShare; use OCP\Share\IManager; use OCP\Files\Mount\IMountPoint; @@ -69,7 +71,7 @@ class MountProviderTest extends \Test\TestCase { } private function makeMockShare($id, $nodeId, $owner = 'user2', $target = null, $permissions = 31) { - $share = $this->getMock('\OCP\Share\IShare'); + $share = $this->createMock(IShare::class); $share->expects($this->any()) ->method('getPermissions') ->will($this->returnValue($permissions)); @@ -100,8 +102,8 @@ class MountProviderTest extends \Test\TestCase { * - shares with a group in which the owner is already in */ public function testExcludeShares() { - $rootFolder = $this->getMock('\OCP\Files\IRootFolder'); - $userManager = $this->getMock('\OCP\IUserManager'); + $rootFolder = $this->createMock(IRootFolder::class); + $userManager = $this->createMock(IUserManager::class); $userShares = [ $this->makeMockShare(1, 100, 'user2', '/share2', 0), $this->makeMockShare(2, 100, 'user2', '/share2', 31), @@ -277,8 +279,8 @@ class MountProviderTest extends \Test\TestCase { * @param array $expectedShares array of expected supershare specs */ public function testMergeShares($userShares, $groupShares, $expectedShares) { - $rootFolder = $this->getMock('\OCP\Files\IRootFolder'); - $userManager = $this->getMock('\OCP\IUserManager'); + $rootFolder = $this->createMock(IRootFolder::class); + $userManager = $this->createMock(IUserManager::class); $userShares = array_map(function($shareSpec) { return $this->makeMockShare($shareSpec[0], $shareSpec[1], $shareSpec[2], $shareSpec[3], $shareSpec[4]); |