blob: 1f7f6241b602255c94d46f403fb45e14a159ec61 [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() {
assert false;
}
}