org.testng.annotations
Interface ITestOrConfiguration

All Superinterfaces:
IAnnotation, IParameterizable
All Known Subinterfaces:
IConfigurationAnnotation, ITestAnnotation

public interface ITestOrConfiguration
extends IParameterizable

This interface captures methods common to @Test and @Configuration Created on Dec 20, 2005

Author:
Cedric Beust

Method Summary
 String[] getDependsOnGroups()
          The list of groups this method depends on.
 String[] getDependsOnMethods()
          The list of methods this method depends on.
 String getDescription()
          The description for this method, which will be shown in the reports.
 boolean getEnabled()
          Whether methods on this class/method are enabled.
 String[] getGroups()
          The list of groups this class/method belongs to.
 long getTimeOut()
          Returns the maximum number of milliseconds this test should take.
 void setDependsOnGroups(String[] groups)
           
 void setDependsOnMethods(String[] dependsOnMethods)
           
 void setDescription(String description)
           
 void setEnabled(boolean enabled)
           
 void setGroups(String[] groups)
           
 void setTimeOut(long l)
           
 
Methods inherited from interface org.testng.annotations.IParameterizable
getParameters
 

Method Detail

getTimeOut

long getTimeOut()
Returns the maximum number of milliseconds this test should take. If it hasn't returned after this time, it will be marked as a FAIL.

Returns:
the maximum number of milliseconds this test should take.

setTimeOut

void setTimeOut(long l)

getGroups

String[] getGroups()
The list of groups this class/method belongs to.


setGroups

void setGroups(String[] groups)

getDependsOnGroups

String[] getDependsOnGroups()
The list of groups this method depends on. Every method member of one of these groups is guaranteed to have been invoked before this method. Furthermore, if any of these methods was not a SUCCESS, this test method will not be run and will be flagged as a SKIP.


setDependsOnGroups

void setDependsOnGroups(String[] groups)

getDependsOnMethods

String[] getDependsOnMethods()
The list of methods this method depends on. There is no guarantee on the order on which the methods depended upon will be run, but you are guaranteed that all these methods will be run before the test method that contains this annotation is run. Furthermore, if any of these methods was not a SUCCESS, this test method will not be run and will be flagged as a SKIP. If some of these methods have been overloaded, all the overloaded versions will be run.


setDependsOnMethods

void setDependsOnMethods(String[] dependsOnMethods)

getEnabled

boolean getEnabled()
Whether methods on this class/method are enabled.


setEnabled

void setEnabled(boolean enabled)

getDescription

String getDescription()
The description for this method, which will be shown in the reports.


setDescription

void setDescription(String description)


Copyright © 2011. All Rights Reserved.