On Tue, Jul 14, 2009 at 8:47 PM, TheMightyKumquat<[email protected]> wrote: > 'Rhino.Mocks.Expect.Call(mockView.Key).Return(New > ClientSearchDocument())
You were expecting property get but what you need is a property set. So just do below before replay. mockView.Key = New ClientSearchDocument(); --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Rhino.Mocks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/RhinoMocks?hl=en -~----------~----~----~----~------~----~------~--~---
