summaryrefslogtreecommitdiffstats
path: root/apps/theming/tests/Settings/AdminTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/theming/tests/Settings/AdminTest.php')
-rw-r--r--apps/theming/tests/Settings/AdminTest.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/theming/tests/Settings/AdminTest.php b/apps/theming/tests/Settings/AdminTest.php
index f7361677d77..5943866edc1 100644
--- a/apps/theming/tests/Settings/AdminTest.php
+++ b/apps/theming/tests/Settings/AdminTest.php
@@ -87,6 +87,10 @@ class AdminTest extends TestCase {
->willReturn('');
$this->themingDefaults
->expects($this->once())
+ ->method('getPrivacyUrl')
+ ->willReturn('');
+ $this->themingDefaults
+ ->expects($this->once())
->method('getSlogan')
->willReturn('MySlogan');
$this->themingDefaults
@@ -110,6 +114,7 @@ class AdminTest extends TestCase {
'iconDocs' => null,
'images' => [],
'imprintUrl' => '',
+ 'privacyUrl' => '',
];
$expected = new TemplateResponse('theming', 'settings-admin', $params, '');
@@ -141,6 +146,10 @@ class AdminTest extends TestCase {
->willReturn('');
$this->themingDefaults
->expects($this->once())
+ ->method('getPrivacyUrl')
+ ->willReturn('');
+ $this->themingDefaults
+ ->expects($this->once())
->method('getSlogan')
->willReturn('MySlogan');
$this->themingDefaults
@@ -164,6 +173,7 @@ class AdminTest extends TestCase {
'iconDocs' => '',
'images' => [],
'imprintUrl' => '',
+ 'privacyUrl' => '',
];
$expected = new TemplateResponse('theming', 'settings-admin', $params, '');