Answers for "How to ignore a test case in testNG?"

2

ignore test in testng

To ignore the test case, we use the (enabled = false) parameter :

	@Test(enabled=false)
Posted by: Guest on December-07-2020
0

How to ignore a test case in testNG?

To ignore the test case, we use the (enabled = false) parameter :

	@Test(enabled=false)
Posted by: Guest on December-08-2020

Code answers related to "How to ignore a test case in testNG?"

Browse Popular Code Answers by Language