01: package test.failures; 02: 03: import org.testng.annotations.Test; 04: 05: public class Child extends Base1 { 06: 07: @Test 08: public void pass() { 09: assert true; 10: } 11: 12: @Test 13: public void fail() { 14: throw new RuntimeException("VOLUNTARILY FAILED"); 15: } 16: }