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 test2_1()8 public void test2_1() { 9 System.out.println("Test 2_1"); 10 } 11 test2_2()12 public void test2_2() { 13 System.out.println("Test 2_2"); 14 } 15 } 16