1.

How To Disable A Test Case In Testng?

Answer»

To disable the test case we USE the PARAMETER ENABLED = FALSE to the @Test annotation.

@Test(enabled = false)

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

@Test(enabled = false)



Discussion

No Comment Found