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