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



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.

Updated on: 2020-06-11T12:31:45+05:30

446 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements