blob: 74a9ac3758a311c692c0a2f2db38c6ba59220735 [file] [log] [blame]
package test.preserveorder;
import org.testng.annotations.Test;
public class ChuckTest3 {
@Test(groups = {"functional"}, dependsOnMethods = {"c3TestTwo"})
public void c3TestThree() {
// System.out.println("chucktest3: test three");
}
@Test(groups = {"functional"})
public static void c3TestOne() {
// System.out.println("chucktest3: test one");
}
@Test(groups = {"functional"}, dependsOnMethods = {"c3TestOne"})
public static void c3TestTwo() {
// System.out.println("chucktest3: test two");
}
}