Skip to content
Snippets Groups Projects
Unverified Commit 5aad530e authored by Roeland Jago Douma's avatar Roeland Jago Douma
Browse files

Fix getMock RepairUnmergedSharesTest

parent cd5183dc
No related branches found
No related tags found
No related merge requests found
...@@ -24,6 +24,7 @@ namespace Test\Repair; ...@@ -24,6 +24,7 @@ namespace Test\Repair;
use OC\Repair\RepairUnmergedShares; use OC\Repair\RepairUnmergedShares;
use OC\Share\Constants; use OC\Share\Constants;
use OCP\IUser;
use OCP\Migration\IOutput; use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep; use OCP\Migration\IRepairStep;
use Test\TestCase; use Test\TestCase;
...@@ -69,8 +70,8 @@ class RepairUnmergedSharesTest extends TestCase { ...@@ -69,8 +70,8 @@ class RepairUnmergedSharesTest extends TestCase {
$this->connection = \OC::$server->getDatabaseConnection(); $this->connection = \OC::$server->getDatabaseConnection();
$this->deleteAllShares(); $this->deleteAllShares();
$this->userManager = $this->getMock('\OCP\IUserManager'); $this->userManager = $this->createMock(IUserManager::class);
$this->groupManager = $this->getMock('\OCP\IGroupManager'); $this->groupManager = $this->createMock(IGroupManager::class);
// used to generate incremental stimes // used to generate incremental stimes
$this->lastShareTime = time(); $this->lastShareTime = time();
...@@ -487,12 +488,12 @@ class RepairUnmergedSharesTest extends TestCase { ...@@ -487,12 +488,12 @@ class RepairUnmergedSharesTest extends TestCase {
* @dataProvider sharesDataProvider * @dataProvider sharesDataProvider
*/ */
public function testMergeGroupShares($shares, $expectedShares) { public function testMergeGroupShares($shares, $expectedShares) {
$user1 = $this->getMock('\OCP\IUser'); $user1 = $this->createMock(IUser::class);
$user1->expects($this->any()) $user1->expects($this->any())
->method('getUID') ->method('getUID')
->will($this->returnValue('user1')); ->will($this->returnValue('user1'));
$user2 = $this->getMock('\OCP\IUser'); $user2 = $this->createMock(IUser::class);
$user2->expects($this->any()) $user2->expects($this->any())
->method('getUID') ->method('getUID')
->will($this->returnValue('user2')); ->will($this->returnValue('user2'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment