I know that MSTest doesn't support RowTest and similar tests.
RowTest
What do MSTests users do? How is it possible to live without RowTest support?
MSTests
I've seen DataDriven test features but sounds like too much overhead, is there any 3rd party patch or tool which allow me to do RowTest similar tests in MSTest?
DataDriven
MSTest
[TestMethod] Test1Row1 { Test1(1,4,5); } [TestMethod] Test1Row2 { Test1(1,7,8); } private Test1(int i, int j, int k) { //all code and assertions in here }
1.4m articles
1.4m replys
5 comments
57.0k users