org.testng.internal.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;
import java.util.Iterator;
/**
* A simple holder for parameters that contains the parameters and where these came from
* (data provider or testng.xml)
* @author cbeust
*
*/
public class ParameterHolder {
/**
* Origin of the parameters.
*/
public enum ParameterOrigin {
ORIGIN_DATA_PROVIDER, // A data provider
ORIGIN_XML // TestNG XML suite
};
public DataProviderHolder dataProviderHolder;
public Iterator