diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2017-04-18 21:30:31 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2017-04-18 16:18:00 -0500 |
commit | 0a54d5a5dde832cc4353e91bd6e6af16e6e5c715 (patch) | |
tree | 84e8ec72c16d923ff2b48fcbe3c105f83f4979bc /tests | |
parent | d379ac7545d5b4d69c5419501a5084073378bc57 (diff) | |
download | nextcloud-server-0a54d5a5dde832cc4353e91bd6e6af16e6e5c715.tar.gz nextcloud-server-0a54d5a5dde832cc4353e91bd6e6af16e6e5c715.zip |
Beautify test email
Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Settings/Controller/MailSettingsControllerTest.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/Settings/Controller/MailSettingsControllerTest.php b/tests/Settings/Controller/MailSettingsControllerTest.php index c8f9e476801..79fe0683cc5 100644 --- a/tests/Settings/Controller/MailSettingsControllerTest.php +++ b/tests/Settings/Controller/MailSettingsControllerTest.php @@ -20,6 +20,7 @@ use OCP\IConfig; use OCP\IL10N; use OCP\IRequest; use OCP\IUserSession; +use OCP\Mail\IEMailTemplate; use OCP\Mail\IMailer; use OC\User\User; @@ -161,6 +162,11 @@ class MailSettingsControllerTest extends \Test\TestCase { $this->mailer->expects($this->once()) ->method('createMessage') ->willReturn($this->createMock(Message::class)); + $emailTemplate = $this->createMock(IEMailTemplate::class); + $this->mailer + ->expects($this->once()) + ->method('createEMailTemplate') + ->willReturn($emailTemplate); $response = $this->mailController->sendTestMail(); $this->assertSame(Http::STATUS_OK, $response->getStatus(), $response->getData()); } |