JUNIT Test NG How to convert test classes from JUNIT to TESTNG Everybody that I talk to says that they use TestNG. I am still using JUNIT. Am I the only person still doing it? I am using Tes… Tuesday, October 11, 2016 Add Comment Edit
JUNIT How Do Assertions Work? @Test public void testScript() { int count = 5; assertTrue("the count is not greater than 0", count > 0); assertTrue… Sunday, July 31, 2016 Add Comment Edit
JUNIT Have too Many Assertions in Test Scripts? Use Custom Assertions Instead If your JUNIT test script uses too many assertions, you can reduce their number with custom assertions and test objects Having … Sunday, June 5, 2016 Add Comment Edit
JUNIT Make Your Automation Scripts Dynamic With Parameters JUNIT provides the ability of having test scripts with parameters. When unit tests do not have parameters, executing them will pr… Sunday, February 7, 2016 Add Comment Edit
JUNIT learn test automation Why is unit testing essential for test automation? Using unit tests in a test automation project brings a lot of benefits create short test automation scripts have independent tes… Thursday, January 28, 2016 Add Comment Edit