blob: 7f43be29e8a271b1f544ca56d27c13f9d6edc504 [file] [log] [blame]
package test.failures;
import org.testng.annotations.Test;
public class DependentTest {
@Test
public void f1() {
}
@Test(dependsOnMethods = {"f1"}, dependsOnGroups = { "f" })
public void f2() {
throw new RuntimeException();
}
}