0

也许我把这个复杂化了,但是我有一个被另一个类调用的电子邮件对象,并且电子邮件类使用了一个 Swift Mailer 的实例。

$email = Email::instance();
$mailer = $this->getMock('Swift_Mailer', array('send'), array(new \Swift_NullTransport()));
$email->setTransport($mailer);
$mailer->expects($this->once())
    ->method('send');
$model->sendEmail('user_email@test.com');

如上所述,我可以轻松测试是否调用了 send 方法并正确确认正在发送电子邮件,但是,我需要测试与邮件一起发送的 Swift Mailer Message 的主题。

$email = Email::instance();
$mailer = $this->getMock('Swift_Mailer', array('send'), array(new \Swift_NullTransport()));
$email->setTransport($mailer);
$mailer->expects($this->once())
    ->method('send')
    ->with($this->equalTo('new email subject'));

显然这不起作用,并且引发了很多错误。

关于如何测试这个的任何想法?

4

1 回答 1

0

找到了解决方法。

我没有测试 Swift Mail 内容,而是模拟模型并测试传递给调用 Email Object 类的函数的参数。

绝对不漂亮,但它会解决上面的具体问题。

于 2012-10-24T21:49:59.693 回答