blob: 96cd34ba2f4d572c8abb7753d6b8b96cc45cf213 [file] [log] [blame]
package test.priority;
import org.testng.annotations.Test;
public class Priority2SampleTest {
@Test(priority = 1)
public void cOne() {
}
@Test(priority = 2)
public void bTwo() {
}
@Test(priority = 3)
public void aThree() {
}
}