我在call_user_func()
示例:
public function trans($lang, $callback)
{
$this->sitepress->switch_lang($lang);
call_user_func($callback);
}
控制器上的:
public function sendMail()
{
$foo = $baz = 'something';
$mail = $this->mailer;
$this->helper->trans_c('en', function() use($foo, $baz, $mail) {
$mail->send('Subject', $foo, $baz);
});
}
测试用例:
public function testSomething()
{
$helperMock = Mockery::mock('Acme\Helper');
$helperMock->shouldReceive('trans_c')->once(); // passed
$mailMock = Mockery::mock('Acme\Mail');
$mailMock->shouldReceive('send')->once(); // got should be called 1 times instead 0
$act = new SendMailController($helperMock, $mailMock);
$act->sendMail();
}
如何确保在->send()
trans_c()
方法
我试过
$helperMock->shouldReceive('trans_c')->with('en', function() use($mailMock) {
$mailMock->shouldReceive('send');
});
没有运气。 :(
它在Mockery::type('Closure')
的第二个参数中传递trans_c
时效果很好,但我确实需要确保调用来自邮件程序类的方法send
。
答案 0 :(得分:1)
默认情况下,模拟类不会执行实际代码。如果您模拟帮助程序,它将检查是否正在进行调用,但不会执行匿名函数。
通过嘲弄,您可以配置期望值,以便执行真正的方法:passthru();
试试这个:
$helperMock = Mockery::mock('Acme\Helper');
$helperMock
->shouldReceive('trans_c')
->once()
->passthru()
;
the docs中解释了这一点。
修改强>
也许你真的不需要嘲笑助手。如果你模拟Mail类并期望调用一次send方法,那就让真正的帮助器去做吧。