gpt4 book ai didi

c# - RhinoMocks 中的 ReplayAll() 和 VerifyAll() 是什么

转载 作者:太空狗 更新时间:2023-10-29 18:11:15 25 4
gpt4 key购买 nike

[Test]
public void MockAGenericInterface()
{
MockRepository mocks = new MockRepository();
IList<int> list = mocks.Create Mock<IList<int>>();
Assert.IsNotNull(list);
Expect.Call(list.Count).Return(5);
mocks.ReplayAll();
Assert.AreEqual(5, list.Count);
mocks.VerifyAll();
}

这段代码中ReplayAll()VerifyAll()的作用是什么?

最佳答案

代码片段演示了 Rhino.Mocks 的Record/Replay/Verify 语法。您首先记录模拟的期望(使用 Expect.Call(),然后您调用 ReplayAll() 来运行模拟模拟。然后,您调用 VerifyAll () 来验证是否满足了所有的期望。

顺便说一下,这是一个过时的语法。新语法称为 AAA Syntax - Arrange, Act, Assert并且通常比旧的 R/R/V 更容易使用。您的代码片段已翻译成 AAA:

  [Test]
public void MockAGenericInterface()
{
IList<int> list = MockRepository.GenerateMock<IList<int>>();
Assert.IsNotNull(list);
list.Expect (x => x.Count).Return(5);
Assert.AreEqual(5, list.Count);
list.VerifyAllExpectations();
}

关于c# - RhinoMocks 中的 ReplayAll() 和 VerifyAll() 是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6078061/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com