Using Visual Studio Test Suite, is there a way to make a single unit test behave and give results as if it were several tests?
I would like to have a test for each set of input parameters I will provide. But I'd rather have all the varieties of input be data-driven, rather than having to write a seperate test for each one.
This question is similar to this one except that (1) I'm not using NUnit and (2) I might prefer my test data comes from a file (a file having data representing many tests).