yworksjr;7283 wrote:Ok, solved it. This had to do with my test method taking an object as argument that didn't have a ToString(). Also every test had a description, but not a name.
Thus every test had the same name as far as NUnit was concerned, which probably led to this problem. ReSharper could still run them individually, though. NCrunch however, only sees one test case, despite there being a dozen.
Yes - this is a known limitation in NCrunch as far as NUnit is concerned. NCrunch needs to generate names for the tests discovered by NUnit, and the only way it can do this is using the test's name. This means that tests must have a unique name when they are discovered from TestCaseSource.