Selenium Java - TestNG Integration
Given these test methods:
Which tests run if you execute only the 'fast' group?
@Test(groups = {"fast"})
public void testA() {}
@Test(groups = {"slow"})
public void testB() {}
@Test(groups = {"fast", "regression"})
public void testC() {}Which tests run if you execute only the 'fast' group?
