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

« back to all changes in this revision

Viewing changes to src/test/java/test/listeners/L3.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.ITestResult;
 
4
import org.testng.TestListenerAdapter;
 
5
 
 
6
public class L3 extends TestListenerAdapter {
 
7
  @Override
 
8
  public void onTestStart(ITestResult result) {
 
9
    BaseWithListener.incrementCount();
 
10
  }
 
11
}