Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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.
Advertisements
