Any idea how we can assert a mock object was called when it is being accessed inside Parallel.ForEach via a closure? I assume that because each invocation is on a different thread that Rhino Mocks loses track of the object?

Pseudocode:

var someStub = MockRepository.GenerateStub()

Parallel.Foreach(collectionOfInts, anInt => someStub.DoSomething(anInt))

someStub.AssertWasCalled(s => s.DoSomething, Repeat.Five.Times)

This test will return an expectation violation, expecting the stub to be called 5 times but being actually called 0 times.

Any ideas how we can tell the lambdas to keep track of the thread-local stub object?

link|improve this question

76% accept rate
What version of Rhino.Mocks are you using? It looks like Rhino.Mocks 3.5 has a dependency on the 2.0 System.Web dll – Patrick Steele May 21 '10 at 13:34
feedback

1 Answer

up vote 0 down vote accepted

Ok well as a temporary measure, we've just abstracted the call to Parallel.ForEach away into another class...

link|improve this answer
In a way I suppose this is the right answer, otherwise we're just unit testing the Parallel Tasks Library, right? – jacko May 24 '10 at 10:46
feedback

Your Answer

 
or
required, but never shown

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