作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我对最小起订量相当陌生,无法弄清楚如何订购设置。我有以下代码:
_orderRepository.Setup(r => r.Update(It.Is<Order>(a => ((int)a.OrderStatusReference.EntityKey.EntityKeyValues[0].Value) == 2)))
.Throws(exception)
.AtMost(5);
_orderRepository.Setup(r => r.Update(It.Is<Order>(a => ((int)a.OrderStatusReference.EntityKey.EntityKeyValues[0].Value) == 2))).AtMostOnce();
最佳答案
呸……有办法!
您可以使用 Queue 返回返回值列表(策略在这里解释得很好: http://haacked.com/archive/2009/09/29/moq-sequences.aspx )。
这是该博客的示例:
如果您希望它起作用(它不起作用):
reader.Setup(r => r.Read()).Returns(true);
reader.Setup(r => r.Read()).Returns(true);
reader.Setup(r => r.Read()).Returns(false);
Queue listOfOperations = new Queue<bool>(new bool[] { true, true, false });
reader.Setup(r => r.Read())
.Returns(() => listOfOperations.Dequeue());
关于.net - 最小起订量 - 有序设置(预期),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1458760/
我是一名优秀的程序员,十分优秀!