blob: 79b58c751f3f134f1c8730a9d743cdd1c8f548fe [file] [log] [blame]
package test.dependent;
import org.testng.annotations.Test;
@Test(groups = { "checkin" })
public class MultiGroup1SampleTest {
@Test(groups = {"a"})
public void testA() {
}
public void test1() throws Exception {
throw new Exception("fail");
}
}