• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package test.listeners;
2 
3 import org.testng.annotations.Listeners;
4 import org.testng.annotations.Test;
5 
6 @Listeners(ExecutionListenerTest.ExecutionListener.class)
7 public class ExecutionListener2SampleTest {
8   @Test
f()9   public void f() {}
10 
11 }
12