• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.thread;
2 
3 import org.testng.annotations.Test;
4 
5 public class Sample1 extends BaseThreadTest {
6 
7   @Test
s1()8   public void s1() {
9     logThread(Thread.currentThread().getId());
10   }
11 }
12