Home | History | Annotate | Download | only in superclass
      1 package test.superclass;
      2 
      3 import org.testng.annotations.Test;
      4 
      5 @Test
      6 public class Child2Test extends Base2 {
      7   public void t1() {
      8     ppp("T1");
      9   }
     10 
     11   public void t2() {
     12     ppp("T2");
     13   }
     14 
     15   public void t3() {
     16     ppp("T3");
     17   }
     18 
     19   private static void ppp(String s) {
     20     if (false) {
     21       System.out.println("[Child] " + s);
     22     }
     23   }
     24 }
     25