1 package test.dependent; 2 3 import org.testng.annotations.Test; 4 5 @Test(groups = {"integration"}, dependsOnGroups = {"checkin", "a"}) 6 public class MultiGroup2SampleTest { 7 test2()8 public void test2() throws Exception { 9 } 10 } 11