All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.testng.internal.annotations.IDataProvidable Maven / Gradle / Ivy

There is a newer version: 7.10.1
Show newest version
package org.testng.internal.annotations;

/**
 * A trait shared by all the annotations that have dataProvider/dataProviderClass attributes.
 */
public interface IDataProvidable {
  String getDataProvider();

  void setDataProvider(String v);

  Class getDataProviderClass();

  void setDataProviderClass(Class v);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy