1.

How To Ignore A Test Case In Testng?

Answer»

To IGNORE the test CASE we USE the parameter ENABLED = false to the @Test annotation.

  1. @Test(enabled = false)

To ignore the test case we use the parameter enabled = false to the @Test annotation.



Discussion

No Comment Found