Tagged Questions

1
vote
1answer
24 views

RhinoMocks: AssertWasCalled doesn't work on Stub

I'm trying to assert with RhinoMocks that a certain property setter was called. But it's not working as expected. The following simplified example illustrates the problem. Consider this interface: ...
1
vote
1answer
189 views

AssertWasCalled and Stub with method that has ref parameter

I have problems with stubbing a method with a ref parameter. I want to stub that method for a certain input value and check that it was called. My attempt: // Variables needed - can be skipped var ...
1
vote
2answers
622 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
1answer
76 views

How to mock arbitrary behavior with Rhino Mocks?

I'm trying to mock a data layer method. The method takes a string and two lists as arguments, and the method populates those lists from the results of a stored proc. Also, I'm still on C# 2.0 with ...
0
votes
1answer
70 views

Is “Record” Deprecated in Rhino Mocks

The latest version of Rhino mocks supports Arrange, Act Assert methodology. Does that mean that the record method that it used in previous version is deprecated? I thought it was (deprecated), but ...