Google Mock 是否会计算析构函数中对模拟函数的调用?
Google Mock 是否计算对被测试对象的析构函数中发生的模拟函数的调用?
Does Google Mock count calls to mocked functions that occur in the destructor of the object under test?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的!
我对此进行了测试,确实对析构函数中的模拟函数的调用确实有效,即您应该 EXPECT_CALL() 它们......
Yes!
I tested this and indeed calls to mocked functions within the destructor do count, i.e. you should EXPECT_CALL() them...