blob: 67a5620bb588b23d0edd34640aa49a25646da22b [file] [log] [blame]
package test.failures;
import org.testng.annotations.Test;
public class Child extends Base1 {
@Test
public void pass() {
assert true;
}
@Test
public void fail() {
throw new RuntimeException("VOLUNTARILY FAILED");
}
}