aboutsummaryrefslogtreecommitdiffstats
path: root/tests/Settings
diff options
context:
space:
mode:
authorLukas Reschke <lukas@statuscode.ch>2016-10-27 20:13:15 +0200
committerLukas Reschke <lukas@statuscode.ch>2016-10-31 17:17:45 +0100
commit8d83e239f321ef63e08c2c1a6658449c7376c46f (patch)
tree277603816fcc000d008be6c7ac84c108300b4d9b /tests/Settings
parent32cf661215fb3926789054a3953b465fc2665330 (diff)
downloadnextcloud-server-8d83e239f321ef63e08c2c1a6658449c7376c46f.tar.gz
nextcloud-server-8d83e239f321ef63e08c2c1a6658449c7376c46f.zip
Fix tests
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'tests/Settings')
-rw-r--r--tests/Settings/Controller/AppSettingsControllerTest.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/tests/Settings/Controller/AppSettingsControllerTest.php b/tests/Settings/Controller/AppSettingsControllerTest.php
index fc9d04fcfe7..72fcf1bd7fc 100644
--- a/tests/Settings/Controller/AppSettingsControllerTest.php
+++ b/tests/Settings/Controller/AppSettingsControllerTest.php
@@ -29,6 +29,7 @@ use OCP\AppFramework\Http\ContentSecurityPolicy;
use OCP\AppFramework\Http\JSONResponse;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\ICacheFactory;
+use OCP\L10N\IFactory;
use Test\TestCase;
use OCP\IRequest;
use OCP\IL10N;
@@ -61,6 +62,8 @@ class AppSettingsControllerTest extends TestCase {
private $categoryFetcher;
/** @var AppFetcher|\PHPUnit_Framework_MockObject_MockObject */
private $appFetcher;
+ /** @var IFactory|\PHPUnit_Framework_MockObject_MockObject */
+ private $l10nFactory;
public function setUp() {
parent::setUp();
@@ -82,6 +85,7 @@ class AppSettingsControllerTest extends TestCase {
$this->appManager = $this->createMock(IAppManager::class);
$this->categoryFetcher = $this->createMock(CategoryFetcher::class);
$this->appFetcher = $this->createMock(AppFetcher::class);
+ $this->l10nFactory = $this->createMock(IFactory::class);
$this->appSettingsController = new AppSettingsController(
'settings',
@@ -92,7 +96,8 @@ class AppSettingsControllerTest extends TestCase {
$this->navigationManager,
$this->appManager,
$this->categoryFetcher,
- $this->appFetcher
+ $this->appFetcher,
+ $this->l10nFactory
);
}