• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.failures;
2 
3 import org.testng.annotations.Test;
4 
5 public class Child extends Base1 {
6 
7   @Test
pass()8   public void pass() {
9       assert true;
10   }
11 
12   @Test
fail()13   public void fail() {
14     throw new RuntimeException("VOLUNTARILY FAILED");
15   }
16 }
17