01: package test.dependent; 02: 03: import org.testng.annotations.Test; 04: 05: @Test(groups={"checkin"}) 06: public class MultiGroup1SampleTest { 07: 08: @Test(groups={"a"}) 09: public void testA() { 10: 11: } 12: 13: public void test1() throws Exception { 14: throw new Exception("fail"); 15: } 16: }