标签: .net unit-testing mocking rhino-mocks
在进行Assert通话时,您会遇到方法重载,这会带来一条消息,例如Assert.AreEqual(x,y,"x should equal y");
Assert
Assert.AreEqual(x,y,"x should equal y");
在设置对模拟对象的期望时,有没有办法做到这一点,例如Expect(...)方法?
Expect(...)