InterviewSolution
Saved Bookmarks
| 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.
To ignore the test case we use the parameter enabled = false to the @Test annotation. |
|