blob: 2eaf54d7bbd7797a5dbfbaff3454f41bb426cedb [file] [log] [blame]
package test.failures;
import org.testng.annotations.Test;
public class Base1 extends Base0 {
@Test
public void base2() {
assert true;
}
@Test
public void failFromBase() {
throw new RuntimeException("VOLUNTARILY FAILED");
}
}