Tagged Questions
The rhino-mocks-3.5 tag has no wiki summary.
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 ...
3
votes
2answers
282 views
Rhinomocks - Mocking delegates
public interface IServiceInvoker
{
R InvokeService<T, R>(Func<T, R> invokeHandler) where T : class;
}
public class MediaController : Controller
{
private IServiceInvoker ...
2
votes
1answer
248 views
NUnit with Rhino Mocks exception: Why is it throwing this exception?
I'm getting an exception that really makes no sense to me whatsoever.
I have an Expect call for a method that takes 3 arguments into it: The types are called CallContext, IDal, and List.
NUnit ...
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
369 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 ...
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
2answers
178 views
Rhino - Mocking classes and not overriding virtual methods
If I'm mocking a class, like below, is there any way I can get the mock to not override a virtual method? I know I can simply remove the virtual modifier, but I actually want to stub out behavior for ...
1
vote
1answer
188 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
154 views
Rhino Mocks and Visual Studio: How do I fix this error?
I'm having another fun problem with Rhino Mocks. Can anyone answer this one:
Here's the call that I'm making in my code:
...
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
0answers
45 views
How to set foreach item expectation in rhino mocks 3.6
I want to be able to do something like this:
IProcessDetails detailprocessor = MockRepository.GenerateMock();
detailprocessor.Expect(p => p.Process(null))
.Repeat.ForEachItemIn(details);
Here is the ...
0
votes
2answers
67 views
Do I really have to do write my code differently so just so I can test it?
I am coming to c# from ruby on rails where I did TDD using Rspec and Mocha. I was looking to get into get into a mocking framework and an older stackoverflow post pointed me in the direction of MOQ ...
0
votes
0answers
28 views
Rhino Parital Mock and Expecting method
I am having trouble trying to create a test at which I would like to instruct Rhinos to return a value when it hits a method that I defined. Upon debugging the test, I realized that the Expected ...
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 ...
0
votes
2answers
410 views
Verify an event was raised by mocked object
In my unit test how can I verify that an event is raised by the mocked object.
I have a View(UI) --> ViewModel --> DataProvider --> ServiceProxy. ServiceProxy makes async call to serivce operation. ...
0
votes
1answer
468 views
RhinoMocks Testing callback method
I have a service proxy class that makes asyn call to service operation. I use a callback method to pass results back to my view model.
Doing functional testing of view model, I can mock service proxy ...