Hello,
Thanks for getting back to me so quickly.
Quote:var mappedData = new Mock<IMappedData>();
// mock setup
var mappingApplicator = new MappingApplicator(_countryResolver.Object);
mappingApplicator.Verify(new List<IMappedData> { mappedData.Object, mappedData.Object });
I have locals up-until the mappingApplicator is instantiated. The second it passes that line, all locals disappear.
Oddly, when I reference the mappingApplicator's assembly from another solution/test project ncrunch works fine.
I created a new project and copied all the tests into it, debugging works fine.