Package | org.flexunit.constants |
Class | public class AnnotationConstants |
Inheritance | AnnotationConstants ![]() |
Constant | Defined 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 |
AFTER | Constant |
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_CLASS | Constant |
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_TYPE | Constant |
public static const ARRAY_ELEMENT_TYPE:String = ArrayElementType
Annotation constant used to specify the data type of items in an array.
BEFORE | Constant |
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_CLASS | Constant |
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_POINT | Constant |
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_POINTS | Constant |
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.
IGNORE | Constant |
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
PARAMETERS | Constant |
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.
RULE | Constant |
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_WITH | Constant |
public static const RUN_WITH:String = RunWith
Annotation constant used to change the default runner for a test class.
SUITE | Constant |
public static const SUITE:String = Suite
Annotation constant used with the Suite Runner
TEST | Constant |
public static const TEST:String = Test
Annotation constant used with all runners to indicate a Test to be executed
THEORY | Constant |
public static const THEORY:String = Theory
Annotation constant used with the Theory runner to indicate a given test is a Theory