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
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
17 views
rhino mocks stub history
I have stubbed a method on an interface and want to see with what parameter it was called, but this method is called several times and I'd like to be able to inspect the parameter of each call. is ...
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
0answers
52 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
69 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 ...