blob: f7cb7f0478e9d6ac10252e024414fdcf0d5e7357 [file] [log] [blame]
package test.testng285;
import org.testng.annotations.Test;
public class Derived extends BugBase {
@Test
public void f1() {
log(Thread.currentThread().getId());
}
@Test
public void f2() {
log(Thread.currentThread().getId());
}
}