我使用的是带有
Ruby 1.9.3的minitest版本
如何测试模拟的多次
调用?我需要类似的东西
mockObject.expect.times(2) :method,[return_1 first time,return_2 second time]
mockObject.verify
有没有办法实现这个目标?
每次
调用方法时都需要
调用
expect
.
mockObject.expect :method,return_1,[first,time,args]
mockObject.expect :method,return_2,[second,args]
# run your code using the mock object
mockObject.verify
原文链接:https://www.f2er.com/ruby/270380.html