I am writing test cases using using VS 2010
I have list of test methods and i am looking to run test cases in a particular order
for an example, here is i have few test methods.
[TestMethod]
public void AddEmployee()
{
//
}
[TestMethod]
public void UpdateEmployee()
{
//
}
[TestMethod]
public void DeleteEmployee()
{
//
}
You can use an ‘Ordered Test’ :
How to: Create an Ordered Test
The tests end up listed in an XML file that Visual Studio executes.