Tagged Questions
5
votes
3answers
5k views
Rhino Mocks error - “Invalid call, the last call has been used or no call has been made”
I am stumped. I am getting this error when I try to set a mock to have "PropertyBehavior()":
System.InvalidOperationException: System.InvalidOperationException:
Invalid call, the last call has ...
2
votes
1answer
60 views
How can I set a value to a Rhino Mocked object?
I have a scenario like this:
form = MockRepository.GenerateMock<IAddAddressForm>();
mediator = new AddAddressMediator(form);
The mediator is the real object under test and needs to be able ...
2
votes
6answers
370 views
Can I tell if a property has been accessed via Rhino Mocks
I have a property in an interface that I have mocked using Rhino Mocks. I want to know if it was accessed in my unit test.
Is there a way to see if the property was accessed via Rhino Mocks?
I ...