niagara-ax/decompiled/org/testng/ITestClass.java
2026-03-17 13:31:18 -07:00

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();
}