All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.IInvokedMethodListener Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng;

/**
 * A listener that gets invoked before and after a method is invoked by TestNG.
 * This listener will only be invoked for configuration and test methods.
 */
public interface IInvokedMethodListener extends ITestNGListener {

  void beforeInvocation(IInvokedMethod method, ITestResult testResult);

  void afterInvocation(IInvokedMethod method, ITestResult testResult);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy