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

28 lines
751 B
Java

package org.testng;
import org.testng.xml.XmlTest;
public interface ITestMethodFinder {
ITestNGMethod[] getAfterClassMethods(Class cls);
ITestNGMethod[] getAfterGroupsConfigurationMethods(Class cls);
ITestNGMethod[] getAfterSuiteMethods(Class cls);
ITestNGMethod[] getAfterTestConfigurationMethods(Class cls);
ITestNGMethod[] getAfterTestMethods(Class cls);
ITestNGMethod[] getBeforeClassMethods(Class cls);
ITestNGMethod[] getBeforeGroupsConfigurationMethods(Class cls);
ITestNGMethod[] getBeforeSuiteMethods(Class cls);
ITestNGMethod[] getBeforeTestConfigurationMethods(Class cls);
ITestNGMethod[] getBeforeTestMethods(Class cls);
ITestNGMethod[] getTestMethods(Class cls, XmlTest xmlTest);
}