org.testng.internal.invokers.ParameterHolder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal.invokers;
import java.util.Iterator;
import org.testng.IDataProviderMethod;
/**
* A simple holder for parameters that contains the parameters and where these came from (data
* provider or testng.xml)
*/
public class ParameterHolder {
/** Origin of the parameters. */
public enum ParameterOrigin {
ORIGIN_DATA_PROVIDER, // A data provider
ORIGIN_XML, // TestNG XML suite
NATIVE // Native injection is involved.
}
final IDataProviderMethod dataProviderHolder;
public final Iterator