I have a test that causes ncrunch to stop working when I have this test in my test suite:
[TestCase("", Result = 3)]
[TestCase("Jason", Result = 2)]
[TestCase("More, Jason", Result = 1)]
[TestCase("Foo", Result = 2)]
[TestCase("Zach", Result = 0)]
public int CustomerSearchQueryBasic(string query)
{
//test stuff
}
when I comment it out, ncrunch starts working again. The bad thing is it doesn't let me know it stops working, it just stops and reports everything green.