public class Priority {
@Test (priority=1)
public void login() {
System.out.println("login");
}
@Test
public void email1() {
System.out.println("email1");
}
@Test (priority=-2)
public void email2() {
System.out.println("email2");
}
//I want a particular test case to run first ....we have to give the ordering
//by default priority=0
//-3 -2 -1 0 1 2 3
//if we have the same priority of 2 test cases then it will run in chronological order
}