1 package test.preserveorder; 2 3 import org.testng.annotations.Test; 4 5 @Test(singleThreaded = true) 6 public class SibTest { 7 @Test sib1()8 public void sib1() { 9 } 10 11 @Test(dependsOnMethods = "sib1") sib2()12 public void sib2() { 13 // System.out.println("sib2"); 14 } 15 16 } 17