Packageorg.flexunit.constants
Classpublic class AnnotationConstants
InheritanceAnnotationConstants Inheritance Object



Public Constants
 ConstantDefined By
  AFTER : String = After
[static] Annotation constant used to mark a method or methods that should run after the execution of each test.
AnnotationConstants
  AFTER_CLASS : String = AfterClass
[static] Annotation constant used to mark a method or methods that should run after the completion of all tests in a class.
AnnotationConstants
  ARRAY_ELEMENT_TYPE : String = ArrayElementType
[static] Annotation constant used to specify the data type of items in an array.
AnnotationConstants
  BEFORE : String = Before
[static] Annotation constant used to mark a method or methods that should run before the execution of each test.
AnnotationConstants
  BEFORE_CLASS : String = BeforeClass
[static] Annotation constant used to mark a method or methods that should run before the first instantiation of a class containing tests
AnnotationConstants
  DATA_POINT : String = DataPoint
[static] Annotation constant used with the Theory runner to indicate a single piece of data to be provided to a theory.
AnnotationConstants
  DATA_POINTS : String = DataPoints
[static] Annotation constant used with the Theory runner to indicate an array of data to be provided to a theory.
AnnotationConstants
  IGNORE : String = Ignore
[static] Annotation constant used to mark a method or class as ignored.
AnnotationConstants
  PARAMETERS : String = Parameters
[static] Annotation constant used with the Parameterized runner to indicate an array of data to be provided to a test's constructor.
AnnotationConstants
  RULE : String = Rule
[static] Annotation constant used with classes that implement IMethodRule indicating that this particular class should be executed as a Rule, wrapping the test.
AnnotationConstants
  RUN_WITH : String = RunWith
[static] Annotation constant used to change the default runner for a test class.
AnnotationConstants
  SUITE : String = Suite
[static] Annotation constant used with the Suite Runner
AnnotationConstants
  TEST : String = Test
[static] Annotation constant used with all runners to indicate a Test to be executed
AnnotationConstants
  THEORY : String = Theory
[static] Annotation constant used with the Theory runner to indicate a given test is a Theory
AnnotationConstants
Constant Detail
AFTERConstant
public static const AFTER:String = After

Annotation constant used to mark a method or methods that should run after the execution of each test.

AFTER_CLASSConstant 
public static const AFTER_CLASS:String = AfterClass

Annotation constant used to mark a method or methods that should run after the completion of all tests in a class.

ARRAY_ELEMENT_TYPEConstant 
public static const ARRAY_ELEMENT_TYPE:String = ArrayElementType

Annotation constant used to specify the data type of items in an array.

BEFOREConstant 
public static const BEFORE:String = Before

Annotation constant used to mark a method or methods that should run before the execution of each test.

BEFORE_CLASSConstant 
public static const BEFORE_CLASS:String = BeforeClass

Annotation constant used to mark a method or methods that should run before the first instantiation of a class containing tests

DATA_POINTConstant 
public static const DATA_POINT:String = DataPoint

Annotation constant used with the Theory runner to indicate a single piece of data to be provided to a theory.

DATA_POINTSConstant 
public static const DATA_POINTS:String = DataPoints

Annotation constant used with the Theory runner to indicate an array of data to be provided to a theory.

IGNOREConstant 
public static const IGNORE:String = Ignore

Annotation constant used to mark a method or class as ignored. The interface will not the existance of this method or class but not attempt to execute it

PARAMETERSConstant 
public static const PARAMETERS:String = Parameters

Annotation constant used with the Parameterized runner to indicate an array of data to be provided to a test's constructor.

RULEConstant 
public static const RULE:String = Rule

Annotation constant used with classes that implement IMethodRule indicating that this particular class should be executed as a Rule, wrapping the test.

RUN_WITHConstant 
public static const RUN_WITH:String = RunWith

Annotation constant used to change the default runner for a test class.

SUITEConstant 
public static const SUITE:String = Suite

Annotation constant used with the Suite Runner

TESTConstant 
public static const TEST:String = Test

Annotation constant used with all runners to indicate a Test to be executed

THEORYConstant 
public static const THEORY:String = Theory

Annotation constant used with the Theory runner to indicate a given test is a Theory