Some of the features of TestNG
Some of the features of TestNG
1. Ability to enable or disable a test method:
//To disable all test methods in a class
@Ignore
public class FirstTest { ...@Test(enabled = false)
public void ignoredTestCase(String name) { ...Last updated