I am using Moq to mock a connection to a Microsoft Dynamics CRM system. I have set up an expectation when a RetrieveMultipleRequest is sent to my Execute method with a specific value in a parameter. The expectation looks like this:
mockConnection.Setup(
m => m.Execute(It.Is<RetrieveMultipleRequest>(
r => r.Query.EntityName == "custom_entity")))
.Returns(configResponse);
In my code, I call the Execute method of the mocked connection. I can see from debugging the code that the EntityName parameter is set how I expect it to be. However, rather than returning configResponse, an ArgumentOutOfRangeException is thrown from within Moq.
The stack trace of the exception are:
System.Collections.ArrayList.get_Item(Int32 index)
lambda_method(ExecutionScope , RetrieveMultipleRequest )
b__1(TValue value)
Matches(Object value)
Moq.Matcher.Matches(Object value)
Moq.MethodCall.Matches(IInvocation call)
b__4(IProxyCall c)
System.Linq.Enumerable.LastOrDefault[TSource](IEnumerable`1 source, Func`2 predicate)
Moq.Interceptor.Intercept(IInvocation invocation)
Castle.DynamicProxy.AbstractInvocation.Proceed()
ICrmConnectionProxy17058decd02e4fb58f77d282ab950c88.Execute(Request request)
I have a total of ten expectations against the same method but none that have the same EntityName property value.
