• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.simple;
2 
3 import org.testng.annotations.Test;
4 
5 public class SimpleTest {
6 
7   @Test
f()8   public void f() {
9   }
10 
ppp(String string)11   private void ppp(String string) {
12     System.out.println("[SimpleTest] " + string);
13   }
14 
15 }
16