开发者

How to mock a property setter on a PartialMock using Rhino Mocks

开发者 https://www.devze.com 2022-12-29 00:01 出处:网络
I\'d like to prevent the real setter code being invoked on a property on a partial class. What is the syntax for this?

I'd like to prevent the real setter code being invoked on a property on a partial class.

What is the syntax for this?

My cu开发者_C百科rrent code to stub out the getter (I'd like to also stub out the setter):

var user = MockRepository.GeneratePartialMock<User>(ctor params...);
user.MyProperty = "blah";

Something like this?

user.Stub(u => u.MyProperty).Do(null);


Here's a 3.5 sample that does what you need (I think your syntax above is 3.1 or 3.2).

First, I have a delegate for the property setter call:

private delegate void NoAction(string value);

Then use the Expect.Call with "SetPropertyAndIgnoreArgument" in addition to the "Do":

var repository = new MockRepository();
var sample = repository.PartialMock<Sample>();

Expect.Call(sample.MyProperty).SetPropertyAndIgnoreArgument().Do(new NoAction(DoNothing));
sample.Replay();

sample.DoSomething();

repository.VerifyAll();
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号