24 lines
454 B
Java
24 lines
454 B
Java
package org.testng.annotations;
|
|
|
|
public interface ITestOrConfiguration extends IParameterizable {
|
|
String[] getDependsOnGroups();
|
|
|
|
String[] getDependsOnMethods();
|
|
|
|
String getDescription();
|
|
|
|
String[] getGroups();
|
|
|
|
long getTimeOut();
|
|
|
|
void setDependsOnGroups(String[] strArr);
|
|
|
|
void setDependsOnMethods(String[] strArr);
|
|
|
|
void setDescription(String str);
|
|
|
|
void setGroups(String[] strArr);
|
|
|
|
void setTimeOut(long j);
|
|
}
|