本文介绍了Moq中的VerifyAll()的用途是什么?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在> Verifiable()的目的是什么中阅读了该问题在Moq中?,并在我的脑海中浮现了这个问题.需要您的帮助来说明这一点.

I read the question at What is the purpose of Verifiable() in Moq? and have this question in my mind. Need your help to explain that.

推荐答案

VerifyAll()用于验证是否满足所有期望.假设您有:

VerifyAll() is for verifying that all the expectations have been met.Suppose you have:

myMock.Setup(m => m.DoSomething()).Returns(1);
mySut.Do();
myMock.VerifyAll(); // Fail if DoSomething was not called

HTH

这篇关于Moq中的VerifyAll()的用途是什么?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-13 04:09