我在What is the purpose of Verifiable() in Moq?上阅读了该问题,并想到了这个问题。需要您的帮助来说明这一点。
最佳答案
VerifyAll()
用于验证是否满足所有期望。
假设您有:
myMock.Setup(m => m.DoSomething()).Returns(1);
mySut.Do();
myMock.VerifyAll(); // Fail if DoSomething was not called
高温超导
关于unit-testing - Moq中的VerifyAll()的用途是什么?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3716561/