Was it helpful?

Question

How to overlook a particular test method from execution in TestNG?

TestNGFrameworkJava Programming

To overlook a particular test method from execution in TestNG enabled helper attribute is used. This attribute has to be set to false to overlook a test method from execution.

Example

Java class file.

@Test(enabled=false)
public void verifyRepay(){
   System.out.println("Repayment successful");
}
@Test
public void Login(){
   System.out.println("Login is successful ");
}
@Test
public verifyHistory(){
   System.out.println ("History verification is successful");
}

Here the verifyRepay() method shall be overlooked during execution.

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