Hi David,
Thank you so much for the advice...
Here's the culprit that was causing issues.
var things= new List<IThing> { Arg.Any<IThing>() };
I changed it to
var things = new List<IThing> { Substitute.For<IThing>() };
I followed your steps and I found the issue by doing following:
1. Run All Tests - 1 Red
2. Sort by projects - Tested each group till one group went 1 Red
3. Removed all the the tests except for that project and then sorted by namespace
4. I then started running in batches and eliminating groups until i was down to 2 namespaces...
5. Once i was down to 2 namespaces, i dug around the other namespace that wasnt going Red. I poked around the tests for any Arg.Any and I found the one i referenced above.
Conclusion:
Just to validate the work, i ran both Visual Studio's Test Runner along with Resharpers Test Runner to make sure i was out of the woods.
I checked-in my work and my CI Build ran all tests successfully...
Thank you again for the great advice. I absolutely enjoy developing with NSub.