Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At the end of the question: Using Moq to set indexers in C#, there was an issue that someone highlighted a problem that I am having as well. But they did not find a solution.

Specifically, I'm trying to use the generic It.IsAny<string> as the matcher for the key and setting the value via It.IsAny<object>. When accessing via an index and setting the value, it never matches and it does not access my call back method. And so my unit tests are failing.

var stateTable = new HashTable;
var httpSession = new Mock<HttpSessionStateBase>();

//works via httpSession.Add(key, value);
httpSession.Setup(x => x.Add(It.IsAny<string>(), It.IsAny<object>()))
    .Callback((string index, object value) => {
        var i = index;
        var v = value;

            stateData[i] = v;
    });

//does not work via httpSession[key] = value;
httpSession.SetupSet(x => x[It.IsAny<string>()] = It.IsAny<object>())
    .Callback( (string index, object value) => {
        var i = index;
        var v = value;

        stateData[i] = v;
});

I'm using Moq 4.0.10827

share|improve this question
I think you should state what the issue is in this question to make it clearer. In it's current form it is hard to infer what the question is. – Gilles Jun 9 '11 at 16:52
His issue is that when you use "It.IsAny<string>" as the value inside of the indexer it will never match. – Matthew Manela Jun 9 '11 at 16:57
Exactly, and editing post to make it clearer. – Digicoder Jun 9 '11 at 17:01

2 Answers

up vote 6 down vote accepted

In my experience this never works, you cannot use the It.IsAny as a matcher in the indexer expression. However, it will match if you put a concrete value in the indexer. For example, the following does work:

httpSession.SetupSet(x => x["someValue"] = It.IsAny<object>())
    .Callback( (string index, object value) => {
        var i = index;
        var v = value;

        stateData[i] = v;
});
share|improve this answer
I've seen some code, from someone who prefers Rhino.Mocks, and they were able to do this. I was hoping it wasn't a Moq deficiency that was preventing this. – Digicoder Jun 9 '11 at 17:58
I don't know about RhinoMocks but at least in Moq it seems like a deficiency – Matthew Manela Jun 9 '11 at 18:00
2  
I posted a reference to this post and a sample testcase to the Moq mailing list this morning. @kzu has seen the post and it sounds like there's agreement that both this and the corresponding misleading error messages need to be fixed. – Kaleb Pederson Jun 9 '11 at 18:37

This is what I did to verify the read.

_httpSessionStateBaseMock.VerifySet(x => x["keyname"] = It.IsAny<YourObject>(), Times.Once());

for the reads I just went with

_httpSessionStateBaseMock.Verify(x => x["keyname"],Times.Once());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.