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