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

« back to all changes in this revision

Viewing changes to src/test/java/test/listeners/BaseWithListener.java

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-10-21 15:53:15 UTC
  • mfrom: (7.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20131021155315-u5rltd1grg53e3n6
Tags: 6.8.7-2
* Team upload
* Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package test.listeners;
 
2
 
 
3
import org.testng.annotations.Listeners;
 
4
 
 
5
@Listeners(value = L3.class)
 
6
class BaseWithListener {
 
7
  static int m_count = 0;
 
8
 
 
9
  public static void incrementCount() {
 
10
    m_count++;
 
11
  }
 
12
}