org.testng.annotations.IFactoryAnnotation 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.annotations;
import org.testng.internal.annotations.IDataProvidable;
import java.util.List;
/**
* Encapsulate the @Factory / @testng.factory annotation
*
* Created on Dec 20, 2005
* @author Cedric Beust
*/
public interface IFactoryAnnotation extends IParameterizable, IDataProvidable {
List getIndices();
void setIndices(List indices);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy