vote up 0 vote down star

How can I Mock Indexed Property with Rhino Mocks ?

flag

62% accept rate

1 Answer

vote up 4 vote down check

I'm assuming you mean a property using this[]

  var mockClass = MockRepository.GenerateMock<MockClass>();

  mockClass.Expect( m => m["key"] ).Return( "value" );  // return a value
  mockClass.Expect( m => m["key2"] = "value2" );  // set a value

  ... some test in here using something that depends on mockClass...


  mockClass.VerifyAllExpectations();
link|flag
Ok Thanks a lot ! :) – Yoann. B Jan 9 at 22:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.