1 package test.listeners;
2 
3 import org.testng.annotations.Listeners;
4 import org.testng.annotations.Test;
5 
6 @Listeners(L2.class)
7 public class AggregateSampleTest extends BaseAggregate {
8   static int m_count = 0;
incrementCount()9   static public void incrementCount() {
10     m_count++;
11   }
12 
13   @Test
f()14   public void f() {
15   }
16 }
17