• 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(SuiteListener2.class)
7 public class SuiteListenerSample2 {
8 
9     @Test
foo()10     public void foo(){}
11 }
12