Multiple calls to a Rhino mocked method return different results

后端 未结 2 558
说谎
说谎 2021-02-18 15:40

If I want to mock a class that returns a string that is used to determine whether while loop should continue (imagine read while string != null), how can I set the expectation.

2条回答
  •  说谎
    说谎 (楼主)
    2021-02-18 16:00

    I'm not familiar with the syntax you're using. I would write this as:

    r.ReadLine();
    LastCall.Return("1,10,20").Repeat.Once();
    r.ReadLine();
    LastCall.Return(null).Repeat.Once();
    

    To ensure that you're specifying the number of times that things are to be repeated. (Don't have Visual Studio to hand, syntax may not be exact.)

提交回复
热议问题