Selenium Java - TestNG Integration
Consider this TestNG code:
What will be the outcome of testB?
@Test public void testA() { Assert.assertTrue(false); }
@Test(dependsOnMethods = {"testA"}) public void testB() { Assert.assertTrue(true); }What will be the outcome of testB?
