Annotation Type TestedOn
-
@Retention(RUNTIME) @Target(PARAMETER) public @interface TestedOn
Annotating aTheory
method int parameter with @TestedOn causes it to be supplied with values from the ints array given when run as a theory by theTheories
runner. For example, the below method would be called three times by the Theories runner, once with each of the int parameters specified.@Theory public void shouldPassForSomeInts(@TestedOn(ints={1, 2, 3}) int param) { ... }
-
-
Required Element Summary
Required Elements Modifier and Type Required Element Description int[]
ints
-
-
-
Element Detail
-
ints
int[] ints
-
-