Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
只是想知道可以在模拟中设置模拟吗?我的意思是一个模拟,而不是配置为返回另一个具有特定设置的模拟。
我正在使用起订量。
谢谢!
查看起订量网站(并使用我对 RhinoMock 的了解)我怀疑您可以执行以下操作:
var innerMock = new Mock<IInnerClass>(); // TODO - Setup innerMock expectations var outerMock = new Mock<IOuterClass>(); outerMock.Setup(i => i.GetInner()).Returns(innerMock.Object);