使用rhino mock对一个属性进行两次存根处理

本文关键字:处理 两次 存根 一个 mock rhino 使用 属性 | 更新日期: 2023-09-27 18:06:25

对于一些对象,我想创建默认存根,以便公共属性包含值。但在某些情况下,我想重写我的默认行为。我的问题是,我能以某种方式覆盖一个已经存根的值吗?

//First I create the default stub with a default value
var foo = MockRepository.GenerateStub<IFoo>();
foo.Stub(x => x.TheValue).Return(1);
//Somewhere else in the code I override the stubbed value
foo.Stub(x => x.TheValue).Return(2);
Assert.AreEqual(2, foo.TheValue); //Fails, since TheValue is 1

使用rhino mock对一个属性进行两次存根处理

使用Expect代替StubGenerateMock代替GenerateStub将解决这个问题:

//First I create the default stub with a default value
var foo = MockRepository.GenerateMock<IFoo>();
foo.Expect(x => x.TheValue).Return(1);
//Somewhere else in the code I override the stubbed value
foo.Expect(x => x.TheValue).Return(2);
Assert.AreEqual(1, foo.TheValue);
Assert.AreEqual(2, foo.TheValue);