Moq to set up a function return based on called times

我的梦境 提交于 2019-11-29 16:32:30

问题


I need to mock an interface to call to MSMQ, is there a way I can use Moq to simulate real MSMQ scenario that there are 10 messages in the queue, I call mocked function 10 times and I can get a pre-defined object, on 11th time I should get a different return value (e.g. null)?


回答1:


Moq now has an extension method called SetupSequence() in the Moq namespace which means you can define a distinct return value for each specific call.

The general idea is that that you just chain the return values you need. In the example bellow the first call will return Joe and the second call will return Jane:

customerService
.SetupSequence(s => s.GetCustomerName(It.IsAny<int>()))
.Returns("Joe")   //first call
.Returns("Jane"); //second call

Some more info here.




回答2:


I sometimes use a simple counter for such scenarios:

int callCounter = 0;
var mock = new Mock<IWhatever>();
mock.Setup(a => a.SomeMethod())
    .Returns(() => 
    {
       if (callCounter++ < 10)
       {
           // do something
       }
       else
       {
           // do something else
       }
    });



回答3:


You can also set up a separate function to do this. You can even pass the function a parameter if you want:

_serviceMock.Setup(x => x.SomeMethod(It.IsAny<String>())).Returns((String param) => getTimesCalled(param));


来源:https://stackoverflow.com/questions/14368380/moq-to-set-up-a-function-return-based-on-called-times

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!