01: package test.failures; 02: 03: import org.testng.annotations.Test; 04: 05: public class DependentTest { 06: 07: @Test 08: public void f1() { 09: 10: } 11: 12: @Test(dependsOnMethods={"f1"},dependsOnGroups={"f"}) 13: public void f2() { 14: throw new RuntimeException(); 15: } 16: }