Moq:验证是否调用了一个方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Moq:验证是否调用了一个方法相关的知识,希望对你有一定的参考价值。
The code to verify that a method was called.The this.mockProvider.Verify verifies that GetBiAutoProcessConfigByKeys is called.
[TestMethod] public void GetProcessConfigSettingsByKeys_Test() { // Setup this.mockProvider.Setup(x => x.GetBiAutoProcessConfigByKeys(123, 456, It.IsAny<int>())) .Returns(automationConfigurationSetting) .Verifiable(); // Action var result = target.GetProcessConfigSettingsByKeys(123, 456, null); // Assert this.mockProvider.Verify(x => x.GetBiAutoProcessConfigByKeys(123, 456, null)); }
以上是关于Moq:验证是否调用了一个方法的主要内容,如果未能解决你的问题,请参考以下文章