Selenium Java - TestNG Integration
Given the following TestNG code:
What will be the test execution result?
@Test public void testA() { Assert.assertTrue(true); }
@Test(dependsOnMethods = {"testA"}) public void testB() { Assert.assertTrue(false); }What will be the test execution result?
