org.testng.ITestNGMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng;
import org.testng.internal.ConstructorOrMethod;
import org.testng.xml.XmlTest;
import java.io.Serializable;
import java.lang.reflect.Method;
import java.util.List;
import java.util.Map;
import java.util.concurrent.Callable;
/**
* Describes a TestNG annotated method and the instance on which it will be invoked.
*
* This interface is not meant to be implemented by users.
*
* @author Cedric Beust, May 3, 2004
*/
public interface ITestNGMethod extends Comparable, Serializable, Cloneable {
/**
* @return The real class on which this method was declared
* (can be different from getMethod().getDeclaringClass() if
* the test method was defined in a superclass).
*/
Class getRealClass();
ITestClass getTestClass();
/**
* Sets the test class having this method. This is not necessarily the declaring class.
*
* @param cls The test class having this method.
*/
void setTestClass(ITestClass cls);
/**
* @return the corresponding Java test method.
* @deprecated This method is deprecated and can now return null. Use
* getConstructorOrMethod() instead.
*/
@Deprecated
Method getMethod();
/**
* Returns the method name. This is needed for serialization because
* methods are not Serializable.
* @return the method name.
*/
String getMethodName();
/**
* @return All the instances the methods will be invoked upon.
* This will typically be an array of one object in the absence
* of an @Factory annotation.
*
* @deprecated Use getInstance().
*/
@Deprecated
Object[] getInstances();
Object getInstance();
/**
* Needed for serialization.
*/
long[] getInstanceHashCodes();
/**
* @return The groups this method belongs to, possibly added to the groups
* declared on the class.
*/
String[] getGroups();
/**
* @return The groups this method depends on, possibly added to the groups
* declared on the class.
*/
String[] getGroupsDependedUpon();
/**
* If a group was not found.
*/
String getMissingGroup();
public void setMissingGroup(String group);
/**
* Before and After groups
*/
public String[] getBeforeGroups();
public String[] getAfterGroups();
/**
* @return The methods this method depends on, possibly added to the methods
* declared on the class.
*/
String[] getMethodsDependedUpon();
void addMethodDependedUpon(String methodName);
/**
* @return true if this method was annotated with @Test
*/
boolean isTest();
/**
* @return true if this method was annotated with @Configuration
* and beforeTestMethod = true
*/
boolean isBeforeMethodConfiguration();
/**
* @return true if this method was annotated with @Configuration
* and beforeTestMethod = false
*/
boolean isAfterMethodConfiguration();
/**
* @return true if this method was annotated with @Configuration
* and beforeClassMethod = true
*/
boolean isBeforeClassConfiguration();
/**
* @return true if this method was annotated with @Configuration
* and beforeClassMethod = false
*/
boolean isAfterClassConfiguration();
/**
* @return true if this method was annotated with @Configuration
* and beforeSuite = true
*/
boolean isBeforeSuiteConfiguration();
/**
* @return true if this method was annotated with @Configuration
* and afterSuite = true
*/
boolean isAfterSuiteConfiguration();
/**
* @return true if this method is a @BeforeTest (@Configuration beforeTest=true)
*/
boolean isBeforeTestConfiguration();
/**
* @return true if this method is an @AfterTest (@Configuration afterTest=true)
*/
boolean isAfterTestConfiguration();
boolean isBeforeGroupsConfiguration();
boolean isAfterGroupsConfiguration();
/**
* @return The timeout in milliseconds.
*/
long getTimeOut();
void setTimeOut(long timeOut);
/**
* @return the number of times this method needs to be invoked.
*/
int getInvocationCount();
void setInvocationCount(int count);
/**
* @return the total number of thimes this method needs to be invoked, including possible
* clones of this method - this is relevant when threadPoolSize is bigger than 1
* where each clone of this method is only invoked once individually, i.e.
* {@link org.testng.ITestNGMethod#getInvocationCount()} would always return 1.
*/
int getTotalInvocationCount();
/**
* @return the success percentage for this method (between 0 and 100).
*/
int getSuccessPercentage();
/**
* @return The id of the thread this method was run in.
*/
String getId();
void setId(String id);
long getDate();
void setDate(long date);
/**
* Returns if this ITestNGMethod can be invoked from within IClass.
*/
boolean canRunFromClass(IClass testClass);
/**
* @return true if this method is alwaysRun=true
*/
boolean isAlwaysRun();
/**
* @return the number of threads to be used when invoking the method on parallel
*/
int getThreadPoolSize();
void setThreadPoolSize(int threadPoolSize);
boolean getEnabled();
public String getDescription();
void setDescription(String description);
public void incrementCurrentInvocationCount();
public int getCurrentInvocationCount();
public void setParameterInvocationCount(int n);
public int getParameterInvocationCount();
void setMoreInvocationChecker(Callable moreInvocationChecker);
boolean hasMoreInvocation();
public ITestNGMethod clone();
public IRetryAnalyzer getRetryAnalyzer();
public void setRetryAnalyzer(IRetryAnalyzer retryAnalyzer);
public boolean skipFailedInvocations();
public void setSkipFailedInvocations(boolean skip);
/**
* The time under which all invocationCount methods need to complete by.
*/
public long getInvocationTimeOut();
public boolean ignoreMissingDependencies();
public void setIgnoreMissingDependencies(boolean ignore);
/**
* Which invocation numbers of this method should be used (only applicable
* if it uses a data provider). If this value is an empty list, use all the values
* returned from the data provider. These values are read from the XML file in
* the tag.
*/
public List getInvocationNumbers();
public void setInvocationNumbers(List numbers);
/**
* The list of invocation numbers that failed, which is only applicable for
* methods that have a data provider.
*/
public void addFailedInvocationNumber(int number);
public List getFailedInvocationNumbers();
/**
* The scheduling priority. Lower priorities get scheduled first.
*/
public int getPriority();
public void setPriority(int priority);
/**
* @return the XmlTest this method belongs to.
*/
public XmlTest getXmlTest();
ConstructorOrMethod getConstructorOrMethod();
/**
* @return the parameters found in the include tag, if any
* @param test
*/
Map findMethodParameters(XmlTest test);
/**
* getRealClass().getName() + "." + getMethodName()
* @return qualified name for this method
*/
public String getQualifiedName();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy