Created
September 12, 2024 11:58
-
-
Save abraham-ny/a72ae36ecb5424f40ebde5fae913bab1 to your computer and use it in GitHub Desktop.
Unit Testing with TestNG Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //remember to add {before test} and {after test} to clean up after the test | |
| //your IDE should let you integrate with TestNG, I use NetBeans | |
| @Test | |
| void ClassNameFunctionTest(){ | |
| //code you want to test | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment