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.
モックの中にモックを設置することは可能だろうか?私は、特定の設定を持つ別のモックを返すように構成されるよりもモックを意味します。
私はMoqを使用しています。
ありがとう!
moqサイトを見ると(そして私がRhinoMockについて知っていることを使用して)、次のようなことができると思います。
var innerMock = new Mock<IInnerClass>(); // TODO - Setup innerMock expectations var outerMock = new Mock<IOuterClass>(); outerMock.Setup(i => i.GetInner()).Returns(innerMock.Object);