1 package test.dependent.functionality1; 2 3 import org.testng.annotations.Test; 4 5 @Test(groups = "tests.functional.upload", dependsOnGroups = "tests.functional.package") 6 public class Test2 { 7 8 public void test2_1() { 9 System.out.println("Test 2_1"); 10 } 11 12 public void test2_2() { 13 System.out.println("Test 2_2"); 14 } 15 } 16