views:

174

answers:

0

Is there an equivalent of SuiteBuilder in MSTest? couldn't find one so far.

I have a bunch of xml files, each to be seen as mapped to a test method. As there are 100s of these and to manually write tests for each of these, is not a good idea.

So in nunit you could implement ISuiteBuilder and have the Test cases run dynamically and show up as those many test methods.

I am looking for a way to do the same thing in MSTest.

I've looked at DataSource attribute, but it caters to 1 datasource xml file/csv per test method, forcing me to write 100s of test methods. I also want to keep each xml file separate and don't club them all in to 1 huge file, in which case it would become unmaintainable.

Has someone tried this or has any suggestions?