Fix getMock L10NTest

This commit is contained in:
Roeland Jago Douma 2016-09-07 20:10:47 +02:00
parent ba3a90d30c
commit f167e65d49
No known key found for this signature in database
GPG Key ID: 1E152838F164D13B
1 changed files with 5 additions and 3 deletions

View File

@ -12,6 +12,8 @@ namespace Test\L10N;
use DateTime;
use OC\L10N\Factory;
use OC\L10N\L10N;
use OCP\IConfig;
use OCP\IRequest;
use OCP\IUserSession;
use Test\TestCase;
@ -26,11 +28,11 @@ class L10nTest extends TestCase {
*/
protected function getFactory() {
/** @var \OCP\IConfig $config */
$config = $this->getMock('OCP\IConfig');
$config = $this->createMock(IConfig::class);
/** @var \OCP\IRequest $request */
$request = $this->getMock('OCP\IRequest');
$request = $this->createMock(IRequest::class);
/** @var IUserSession $userSession */
$userSession = $this->getMock('OCP\IUserSession');
$userSession = $this->createMock(IUserSession::class);
return new Factory($config, $request, $userSession, \OC::$SERVERROOT);
}