作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 call_user_func()
示例调用的闭包内有问题单元测试方法:
public function trans($lang, $callback)
{
$this->sitepress->switch_lang($lang);
call_user_func($callback);
}
在 Controller 上:
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');
});
运气不好。 :(
在 trans_c
的第二个参数中传递 Mockery::type('Closure')
效果很好,但我真的需要确保该方法 调用来自邮件程序类的发送
。
最佳答案
模拟类默认不执行真实代码。如果您模拟帮助程序,它将检查是否正在进行调用,但不会执行匿名函数。
使用 mockery,您可以配置期望,以便执行真正的方法:passthru();
试试这个:
$helperMock = Mockery::mock('Acme\Helper');
$helperMock
->shouldReceive('trans_c')
->once()
->passthru()
;
这在 the docs 中有解释.
编辑
也许您真的不需要模拟助手。如果您模拟 Mail 类并期望发送方法被调用一次,只需让真正的助手来完成即可。
关于unit-testing - 闭包内的 mock 模拟方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30095383/
我正在尝试对 StockData 表执行 OHCL sql 查询 (SQL Server 2012)。每天有数千行添加到表中,我想获取每天的开盘价、最高价、最低价和收盘价数据。 建表sql如下:
我是一名优秀的程序员,十分优秀!