Was it helpful?

Question

How to set priority to the test cases in TestNG?

TestNGFrameworkJava Programming

We can set priority for test cases in order of their execution, by giving priority to each test method. A test method having lower priority runs first then the test methods with higher priority are executed.

Example

@Test (priority = 1)
public void verifyTravel(){
   System.out.println("Travel history successful ");
}
@Test (priority = 2)
public verifyIncome(){
   System.out.println ("Income history successful");
}

In the Java class file, verifyTravel() will run first followed by verifyIncome().

raja
Published on 11-Jun-2020 16:13:32
Advertisements
Was it helpful?
Not affiliated with Tutorialspoint
scroll top