~ubuntu-branches/ubuntu/utopic/testng/utopic

1
2
3
4
5
6
7
8
9
10
11
12
package test.listeners;

import org.testng.annotations.Listeners;

@Listeners(value = L3.class)
class BaseWithListener {
  static int m_count = 0;

  public static void incrementCount() {
    m_count++;
  }
}