org.testng.internal.annotations.IDataProvidable 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.annotations;
/**
* A trait shared by all the annotations that have dataProvider/dataProviderClass attributes.
*
* @author Cedric Beust
*/
public interface IDataProvidable {
public String getDataProvider();
public void setDataProvider(String v);
public Class> getDataProviderClass();
public void setDataProviderClass(Class> v);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy