• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.failures;
2 
3 import org.testng.annotations.Test;
4 
5 public class DependentTest {
6 
7   @Test
f1()8   public void f1() {
9 
10   }
11 
12   @Test(dependsOnMethods = {"f1"}, dependsOnGroups = { "f" })
f2()13   public void f2() {
14     throw new RuntimeException();
15   }
16 }
17