Uses of Interface
org.testng.IInvokedMethod
-
Packages that use IInvokedMethod Package Description org.testng org.testng.internal org.testng.internal.invokers -
-
Uses of IInvokedMethod in org.testng
Methods in org.testng that return types with arguments of type IInvokedMethod Modifier and Type Method Description List<IInvokedMethod>
ISuite. getAllInvokedMethods()
List<IInvokedMethod>
SuiteRunner. getAllInvokedMethods()
Methods in org.testng with parameters of type IInvokedMethod Modifier and Type Method Description void
IInvokedMethodListener. afterInvocation(IInvokedMethod method, ITestResult testResult)
void
IInvokedMethodListener2. afterInvocation(IInvokedMethod method, ITestResult testResult, ITestContext context)
To be implemented if the method needs a handle to contextual information.void
SuiteRunner. afterInvocation(IInvokedMethod method, ITestResult testResult)
void
IInvokedMethodListener. beforeInvocation(IInvokedMethod method, ITestResult testResult)
void
IInvokedMethodListener2. beforeInvocation(IInvokedMethod method, ITestResult testResult, ITestContext context)
To be implemented if the method needs a handle to contextual information.void
SuiteRunner. beforeInvocation(IInvokedMethod method, ITestResult testResult)
-
Uses of IInvokedMethod in org.testng.internal
Classes in org.testng.internal that implement IInvokedMethod Modifier and Type Class Description class
InvokedMethod
Method parameters in org.testng.internal with type arguments of type IInvokedMethod Modifier and Type Method Description static void
MethodHelper. dumpInvokedMethodsInfoToConsole(Collection<IInvokedMethod> iInvokedMethods, int currentVerbosity)
static List<ITestNGMethod>
MethodHelper. invokedMethodsToMethods(Collection<IInvokedMethod> invokedMethods)
-
Uses of IInvokedMethod in org.testng.internal.invokers
Methods in org.testng.internal.invokers with parameters of type IInvokedMethod Modifier and Type Method Description void
InvokedMethodListenerInvoker. invokeListener(IInvokedMethodListener listenerInstance, IInvokedMethod invokedMethod)
Invoke the givenlistenerInstance
, calling the method specified in the constructor of thisInvokedMethodListenerInvoker
.
-