Tagged Questions

1
vote
2answers
86 views

Rhino Mocks - Stub a Singleton

I have a Singleton that is accessed in my class via a static property like this:OtherClassNotBeingTested.Instance.SomeInstanceMethod() I would like to test my class with out making one of these …
0
votes
3answers
373 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
36 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 …
1
vote
6answers
129 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 …