Home | History | Annotate | Download | only in invokers
      1 package org.testng.internal.invokers;
      2 
      3 import org.testng.IInvokedMethodListener;
      4 import org.testng.IInvokedMethodListener2;
      5 
      6 /**
      7  * Indicates which of the methods of a {@link IInvokedMethodListener} or
      8  * {@link IInvokedMethodListener2} should be called.
      9  *
     10  * @author Ansgar Konermann
     11  */
     12 public enum InvokedMethodListenerMethod {
     13   BEFORE_INVOCATION,
     14   AFTER_INVOCATION
     15 }
     16