Selenium Java - TestNG Integration
Given the following TestNG test methods, which tests will 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() {}