aboutsummaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/ThemingDefaultsTest.php
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2017-09-12 09:09:45 +0200
committerJulius Härtl <jus@bitgrid.net>2017-09-12 09:28:22 +0200
commit8391ca8792dace13ba4cf5ebd43d9ea0931b7b2a (patch)
treed3126dfe3cfbfe76c21d5fa1b29ed1289f207aba /apps/theming/tests/ThemingDefaultsTest.php
parent699c64c7504ecd1518827e031eac202da1dcd228 (diff)
downloadnextcloud-server-8391ca8792dace13ba4cf5ebd43d9ea0931b7b2a.tar.gz
nextcloud-server-8391ca8792dace13ba4cf5ebd43d9ea0931b7b2a.zip
Use IAppManager instead of private API
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/theming/tests/ThemingDefaultsTest.php')
-rw-r--r--apps/theming/tests/ThemingDefaultsTest.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/theming/tests/ThemingDefaultsTest.php b/apps/theming/tests/ThemingDefaultsTest.php
index 48099e8be0f..b1d86bff432 100644
--- a/apps/theming/tests/ThemingDefaultsTest.php
+++ b/apps/theming/tests/ThemingDefaultsTest.php
@@ -24,6 +24,7 @@
namespace OCA\Theming\Tests;
use OCA\Theming\ThemingDefaults;
+use OCP\App\IAppManager;
use OCP\Files\IAppData;
use OCA\Theming\Util;
use OCP\Files\NotFoundException;
@@ -55,6 +56,8 @@ class ThemingDefaultsTest extends TestCase {
private $util;
/** @var ICache|\PHPUnit_Framework_MockObject_MockObject */
private $cache;
+ /** @var IAppManager|\PHPUnit_Framework_MockObject_MockObject */
+ private $appManager;
public function setUp() {
parent::setUp();
@@ -65,6 +68,7 @@ class ThemingDefaultsTest extends TestCase {
$this->cacheFactory = $this->createMock(ICacheFactory::class);
$this->cache = $this->createMock(ICache::class);
$this->util = $this->createMock(Util::class);
+ $this->appManager = $this->createMock(IAppManager::class);
$this->defaults = new \OC_Defaults();
$this->cacheFactory
->expects($this->any())
@@ -77,7 +81,8 @@ class ThemingDefaultsTest extends TestCase {
$this->urlGenerator,
$this->appData,
$this->cacheFactory,
- $this->util
+ $this->util,
+ $this->appManager
);
}