01: package test.dependent; 02: 03: import org.testng.annotations.Test; 04: 05: @Test(groups={"integration"},dependsOnGroups={"checkin","a"}) 06: public class MultiGroup2SampleTest { 07: 08: public void test2() throws Exception { 09: } 10: }