From 9cd637487877212a29009a4be4039b8d4fc53e1e Mon Sep 17 00:00:00 2001 From: Roeland Jago Douma Date: Fri, 2 Sep 2016 10:40:48 +0200 Subject: Fix getMock files --- apps/files/tests/Controller/ApiControllerTest.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'apps/files/tests/Controller/ApiControllerTest.php') diff --git a/apps/files/tests/Controller/ApiControllerTest.php b/apps/files/tests/Controller/ApiControllerTest.php index 348150e0e08..9bfc6d6f5e8 100644 --- a/apps/files/tests/Controller/ApiControllerTest.php +++ b/apps/files/tests/Controller/ApiControllerTest.php @@ -30,6 +30,9 @@ use OC\Files\FileInfo; use OCP\AppFramework\Http; use OCP\Files\NotFoundException; use OCP\Files\StorageNotAvailableException; +use OCP\IConfig; +use OCP\IUser; +use OCP\IUserSession; use Test\TestCase; use OCP\IRequest; use OCA\Files\Service\TagService; @@ -66,11 +69,11 @@ class ApiControllerTest extends TestCase { $this->request = $this->getMockBuilder('\OCP\IRequest') ->disableOriginalConstructor() ->getMock(); - $this->user = $this->getMock('\OCP\IUser'); + $this->user = $this->createMock(IUser::class); $this->user->expects($this->any()) ->method('getUID') ->will($this->returnValue('user1')); - $userSession = $this->getMock('\OCP\IUserSession'); + $userSession = $this->createMock(IUserSession::class); $userSession->expects($this->any()) ->method('getUser') ->will($this->returnValue($this->user)); @@ -83,7 +86,7 @@ class ApiControllerTest extends TestCase { $this->preview = $this->getMockBuilder('\OCP\IPreview') ->disableOriginalConstructor() ->getMock(); - $this->config = $this->getMock('\OCP\IConfig'); + $this->config = $this->createMock(IConfig::class); $this->userFolder = $this->getMockBuilder('\OC\Files\Node\Folder') ->disableOriginalConstructor() ->getMock(); -- cgit v1.2.3