@Retention(value=RUNTIME) @Target(value=ANNOTATION_TYPE) @Deprecated public @interface TestTarget
| Modifier and Type | Optional Element and Description |
|---|---|
String |
conceptName
Deprecated.
Specifies the name of a concept being tested.
|
Class<?>[] |
methodArgs
Deprecated.
Specifies the signature of the method that is being tested, in terms of
Java classes.
|
String |
methodName
Deprecated.
Specifies the name of the method that is being tested.
|
public abstract String methodName
public abstract String conceptName
methodName is not accurate enough. E.g. for
Pattern.compile(String) methodName is not
sufficient since the String contains a pattern with its own syntax which
has to be tested with different aspects. Areas concerned are e.g. JDBC
(SELECT, INSERT, UPDATE, DELETE, ...), regex (character sets,
operators,...), formatters (DecimalFormat, DateFormat, ChoiceFormat,
...), ...public abstract Class<?>[] methodArgs