Package org.seedstack.seed.testing
Annotation Type Arguments
-
@Target({TYPE,METHOD}) @Retention(RUNTIME) @Documented @Inherited public @interface Arguments
Specify command-line arguments for the duration of the test.
-
-
Optional Element Summary
Optional Elements Modifier and Type Optional Element Description booleanappendIf true, only when the annotation is placed on a test method and there is already another annotation on the class, its arguments are appended to the class annotation instead of replacing them.String[]valueThe arguments to be passed to the launcher used for running the test.
-
-
-
Element Detail
-
value
String[] value
The arguments to be passed to the launcher used for running the test.- Returns:
- the arguments.
- Default:
- {}
-
-
-
append
boolean append
If true, only when the annotation is placed on a test method and there is already another annotation on the class, its arguments are appended to the class annotation instead of replacing them.- Returns:
- if true, arguments are appended to the ones one the test class, otherwise they replace them.
- Default:
- true
-
-