blob: c0422282c7c5462efe1399ad35700767acbb3f39 [file] [log] [blame]
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);
}