1 package test.testng173.anotherpackage;
2 
3 import org.testng.annotations.Test;
4 
5 public class ClassC {
6 
7 	@Test
testX()8 	public void testX() {
9 
10 	}
11 
12 	@Test(dependsOnMethods = "testX")
test2()13 	public void test2() {
14 
15 	}
16 
17 	@Test(dependsOnMethods = "test2")
test1()18 	public void test1() {
19 
20 	}
21 
22 }