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