Package org.testng.internal.invokers
Class TestMethodArguments
- java.lang.Object
-
- org.testng.internal.invokers.Arguments
-
- org.testng.internal.invokers.MethodArguments
-
- org.testng.internal.invokers.TestMethodArguments
-
public class TestMethodArguments extends MethodArguments
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TestMethodArguments.Builder
-
Field Summary
Fields Modifier and Type Field Description private ITestNGMethod[]
afterMethods
private ITestNGMethod[]
beforeMethods
private ConfigurationGroupMethods
groupMethods
private int
parametersIndex
private ITestClass
testClass
-
Fields inherited from class org.testng.internal.invokers.MethodArguments
parameterValues
-
-
Constructor Summary
Constructors Modifier Constructor Description private
TestMethodArguments(java.lang.Object instance, ITestNGMethod tm, java.lang.Object[] parameterValues, int parametersIndex, java.util.Map<java.lang.String,java.lang.String> params, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ITestNGMethod[]
getAfterMethods()
ITestNGMethod[]
getBeforeMethods()
ConfigurationGroupMethods
getGroupMethods()
int
getParametersIndex()
ITestClass
getTestClass()
-
Methods inherited from class org.testng.internal.invokers.MethodArguments
getParameterValues
-
Methods inherited from class org.testng.internal.invokers.Arguments
getInstance, getParameters, getTestMethod
-
-
-
-
Field Detail
-
testClass
private final ITestClass testClass
-
parametersIndex
private final int parametersIndex
-
beforeMethods
private final ITestNGMethod[] beforeMethods
-
afterMethods
private final ITestNGMethod[] afterMethods
-
groupMethods
private final ConfigurationGroupMethods groupMethods
-
-
Constructor Detail
-
TestMethodArguments
private TestMethodArguments(java.lang.Object instance, ITestNGMethod tm, java.lang.Object[] parameterValues, int parametersIndex, java.util.Map<java.lang.String,java.lang.String> params, ITestClass testClass, ITestNGMethod[] beforeMethods, ITestNGMethod[] afterMethods, ConfigurationGroupMethods groupMethods)
-
-
Method Detail
-
getParametersIndex
public int getParametersIndex()
-
getBeforeMethods
public ITestNGMethod[] getBeforeMethods()
-
getAfterMethods
public ITestNGMethod[] getAfterMethods()
-
getGroupMethods
public ConfigurationGroupMethods getGroupMethods()
-
getTestClass
public ITestClass getTestClass()
-
-