Currently, I'm using XUnit 2.41 and NCrunch 4.16.0.4 and I have a set of classes that I use to input test data to a test:
[img=https://ibb.co/7X9qNFw]Theory with ClassData[/img]
And although some ClassData have 10 test cases, it shows up in the result windows as only one test:
[img=https://ibb.co/bbnzPw2]Results with only one test result[/img]
The ReSharper test explorer show the same only one test.
I saw some discussions, like
this one, and they said that XUnit version 2 or later could provide ability to NCrunch to split the results.
This way, if a lot of tests fail, it shows only the first failing case... to solve, I have to comment out in the ClassData class all other cases, green it, uncomment in one by one seeing if any other get red, and treat it...
Any suggestions?
TIA