1 package test.preserveorder; 2 3 import org.testng.annotations.Test; 4 5 public class ChuckTest4 { 6 7 @Test(groups = {"functional"}, dependsOnMethods = {"c4TestTwo"}) c4TestThree()8 public void c4TestThree() { 9 // System.out.println("chucktest4: test three"); 10 } 11 12 @Test(groups = {"functional"}) c4TestOne()13 public static void c4TestOne() { 14 // System.out.println("chucktest4: test one"); 15 } 16 17 @Test(groups = {"functional"}, dependsOnMethods = {"c4TestOne"}) c4TestTwo()18 public static void c4TestTwo() { 19 // System.out.println("chucktest4: test two"); 20 } 21 22 } 23