blob: 1a7091a61dc49845d79b61470b4e0494c08784db [file] [log] [blame]
package test.testng173;
import org.testng.annotations.Test;
public class ClassA {
@Test
public void test1() {
}
@Test(dependsOnMethods = "test1")
public void test2() {
}
}