Home | History | Annotate | Download | only in testng173
      1 package test.testng173;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 public class ClassA {
      6 
      7 	@Test
      8 	public void test1() {
      9 	}
     10 
     11 	@Test(dependsOnMethods = "test1")
     12 	public void test2() {
     13 	}
     14 
     15 }
     16