1 package test.testng285; 2 3 import org.testng.annotations.Test; 4 5 public class Derived extends BugBase { 6 7 @Test f1()8 public void f1() { 9 log(Thread.currentThread().getId()); 10 } 11 12 @Test f2()13 public void f2() { 14 log(Thread.currentThread().getId()); 15 } 16 } 17