34 lines
733 B
Java
34 lines
733 B
Java
package org.testng;
|
|
|
|
import java.io.Serializable;
|
|
|
|
public interface ITestClass extends IClass, Serializable {
|
|
ITestNGMethod[] getAfterClassMethods();
|
|
|
|
ITestNGMethod[] getAfterGroupsMethods();
|
|
|
|
ITestNGMethod[] getAfterSuiteMethods();
|
|
|
|
ITestNGMethod[] getAfterTestConfigurationMethods();
|
|
|
|
ITestNGMethod[] getAfterTestMethods();
|
|
|
|
ITestNGMethod[] getBeforeClassMethods();
|
|
|
|
ITestNGMethod[] getBeforeGroupsMethods();
|
|
|
|
ITestNGMethod[] getBeforeSuiteMethods();
|
|
|
|
ITestNGMethod[] getBeforeTestConfigurationMethods();
|
|
|
|
ITestNGMethod[] getBeforeTestMethods();
|
|
|
|
int getInstanceCount();
|
|
|
|
long[] getInstanceHashCodes();
|
|
|
|
Object[] getInstances(boolean z);
|
|
|
|
ITestNGMethod[] getTestMethods();
|
|
}
|