testng ignore the test method

example:

@Test(enabled = false)

public void a() {

System.out.println("123");

}

Enabled = false added to the inside in the test

Guess you like

Origin www.cnblogs.com/kaibindirver/p/12215482.html