47 lines
968 B
Java
47 lines
968 B
Java
package org.testng;
|
|
|
|
import java.util.Collection;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import org.testng.internal.annotations.IAnnotationFinder;
|
|
import org.testng.xml.XmlSuite;
|
|
|
|
public interface ISuite extends IAttributes {
|
|
void addListener(ITestNGListener iTestNGListener);
|
|
|
|
List<IInvokedMethod> getAllInvokedMethods();
|
|
|
|
List<ITestNGMethod> getAllMethods();
|
|
|
|
IAnnotationFinder getAnnotationFinder();
|
|
|
|
Collection<ITestNGMethod> getExcludedMethods();
|
|
|
|
String getHost();
|
|
|
|
@Deprecated
|
|
Collection<ITestNGMethod> getInvokedMethods();
|
|
|
|
Map<String, Collection<ITestNGMethod>> getMethodsByGroups();
|
|
|
|
String getName();
|
|
|
|
IObjectFactory getObjectFactory();
|
|
|
|
IObjectFactory2 getObjectFactory2();
|
|
|
|
String getOutputDirectory();
|
|
|
|
String getParallel();
|
|
|
|
String getParameter(String str);
|
|
|
|
Map<String, ISuiteResult> getResults();
|
|
|
|
SuiteRunState getSuiteState();
|
|
|
|
XmlSuite getXmlSuite();
|
|
|
|
void run();
|
|
}
|