Package org.testng.internal.invokers
Class Invoker
- java.lang.Object
-
- org.testng.internal.invokers.Invoker
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static java.util.function.BiPredicate<ITestNGMethod,IClass>
CAN_RUN_FROM_CLASS
Predicate to filter methodsprivate ConfigInvoker
m_configInvoker
private TestInvoker
m_testInvoker
(package private) static java.util.function.BiPredicate<ITestNGMethod,IClass>
SAME_CLASS
Predicate to filter methods
-
Constructor Summary
Constructors Constructor Description Invoker(IConfiguration configuration, ITestContext testContext, ITestResultNotifier notifier, SuiteRunState state, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, DataProviderHolder holder)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ConfigInvoker
getConfigInvoker()
TestInvoker
getTestInvoker()
-
-
-
Field Detail
-
CAN_RUN_FROM_CLASS
static final java.util.function.BiPredicate<ITestNGMethod,IClass> CAN_RUN_FROM_CLASS
Predicate to filter methods
-
SAME_CLASS
static final java.util.function.BiPredicate<ITestNGMethod,IClass> SAME_CLASS
Predicate to filter methods
-
m_testInvoker
private final TestInvoker m_testInvoker
-
m_configInvoker
private final ConfigInvoker m_configInvoker
-
-
Constructor Detail
-
Invoker
public Invoker(IConfiguration configuration, ITestContext testContext, ITestResultNotifier notifier, SuiteRunState state, boolean skipFailedInvocationCounts, java.util.Collection<IInvokedMethodListener> invokedMethodListeners, java.util.List<IClassListener> classListeners, DataProviderHolder holder)
-
-
Method Detail
-
getConfigInvoker
public ConfigInvoker getConfigInvoker()
- Specified by:
getConfigInvoker
in interfaceIInvoker
-
getTestInvoker
public TestInvoker getTestInvoker()
- Specified by:
getTestInvoker
in interfaceIInvoker
-
-