diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-19 21:55:02 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-03-16 12:47:06 +0100 |
commit | e32f1582c76252ae80802c0851a9583504131dff (patch) | |
tree | 247976a9bd3dd9f9549b205ba58a0c0c2e721cc9 /tests/lib/mail | |
parent | dfd70337d6db5e6e15f6763d5e8762f189e9fd71 (diff) | |
download | nextcloud-server-e32f1582c76252ae80802c0851a9583504131dff.tar.gz nextcloud-server-e32f1582c76252ae80802c0851a9583504131dff.zip |
Show more detailed error message
Diffstat (limited to 'tests/lib/mail')
-rw-r--r-- | tests/lib/mail/mailer.php | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/lib/mail/mailer.php b/tests/lib/mail/mailer.php index 2cb4c5cfde3..8929bfdf99d 100644 --- a/tests/lib/mail/mailer.php +++ b/tests/lib/mail/mailer.php @@ -53,20 +53,6 @@ class MailerTest extends TestCase { $this->assertEquals(\Swift_SendmailTransport::newInstance('/var/qmail/bin/sendmail -bs'), \Test_Helper::invokePrivate($this->mailer, 'getSendMailInstance')); } - public function testGetSmtpInstanceDefaults() { - $expected = \Swift_SmtpTransport::newInstance(); - $expected->setHost('127.0.0.1'); - $expected->setTimeout(10); - $expected->setPort(25); - - $this->config - ->expects($this->any()) - ->method('getSystemValue') - ->will($this->returnArgument(1)); - - $this->assertEquals($expected, \Test_Helper::invokePrivate($this->mailer, 'getSmtpInstance')); - } - public function testGetInstanceDefault() { $this->assertInstanceOf('\Swift_MailTransport', \Test_Helper::invokePrivate($this->mailer, 'getInstance')); } @@ -80,15 +66,6 @@ class MailerTest extends TestCase { $this->assertInstanceOf('\Swift_MailTransport', \Test_Helper::invokePrivate($this->mailer, 'getInstance')); } - public function testGetInstanceSmtp() { - $this->config - ->expects($this->any()) - ->method('getSystemValue') - ->will($this->returnValue('smtp')); - - $this->assertInstanceOf('\Swift_SmtpTransport', \Test_Helper::invokePrivate($this->mailer, 'getInstance')); - } - public function testGetInstanceSendmail() { $this->config ->expects($this->any()) |