18 lines
298 B
Java
18 lines
298 B
Java
package org.testng.internal.annotations;
|
|
|
|
public interface IBaseBeforeAfter {
|
|
boolean getAlwaysRun();
|
|
|
|
String[] getDependsOnGroups();
|
|
|
|
String[] getDependsOnMethods();
|
|
|
|
String getDescription();
|
|
|
|
boolean getEnabled();
|
|
|
|
String[] getGroups();
|
|
|
|
boolean getInheritGroups();
|
|
}
|