How can I call one test case from another like:
[TestMethod] Public void GetRes() { var Result=ObjectClass.AddMaths(10,20); Assert.AreEqual(30, result); } But I would like to test more then one like the following:
public static IEnumerable TestCaseMethod1() { ArrayList ObjList = new ArrayList(); //How can I write a Test Case For GetRes() & how can I call TestCaseMethod1() }