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 ...
3
votes
2answers
297 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
254 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
372 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
40 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
201 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
217 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
156 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
640 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
37 views
Rhino Mocks Step-By-Step Tutorials
Before i begin i realise that there are some posts such as this one which have asked the same question.
However the links on the suggested page do not work (it simply takes me back root blog page).
...
0
votes
0answers
31 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
71 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
439 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
485 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 ...