Package org.testng
Interface IInvokedMethod
-
- All Known Implementing Classes:
InvokedMethod
public interface IInvokedMethodAn interface representing a method that has been invoked by TestNG.This interface is internal.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetDate()ITestNGMethodgetTestMethod()ITestResultgetTestResult()booleanisConfigurationMethod()booleanisTestMethod()
-
-
-
Method Detail
-
isTestMethod
boolean isTestMethod()
- Returns:
- true if this method is a test method
-
isConfigurationMethod
boolean isConfigurationMethod()
- Returns:
- true if this method is a configuration method (@BeforeXXX or @AfterXXX)
-
getTestMethod
ITestNGMethod getTestMethod()
- Returns:
- the test method
-
getTestResult
ITestResult getTestResult()
-
getDate
long getDate()
- Returns:
- the date when this method was run
-
-