Added in API level 1
Deprecated in API level 14

TestTarget

public abstract @interface TestTarget
implements Annotation

dalvik.annotation.TestTarget


This @interface was deprecated in API level 14.
Obsolete.

Defines an annotation used be used within the TestInfo annotation. It specifies a single method target for the test (but can be used multiple times).

Summary

Public methods

String conceptName()

Specifies the name of a concept being tested.

Class[]<?> methodArgs()

Specifies the signature of the method that is being tested, in terms of Java classes.

String methodName()

Specifies the name of the method that is being tested.

Inherited methods

abstract Class<? extends Annotation> annotationType()

Returns the annotation interface of this annotation.

abstract boolean equals(Object obj)

Returns true if the specified object represents an annotation that is logically equivalent to this one.

abstract int hashCode()

Returns the hash code of this annotation.

abstract String toString()

Returns a string representation of this annotation.

Public methods

conceptName

Added in API level 3
Deprecated in API level 14
public String conceptName ()

Specifies the name of a concept being tested. Use this if 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, ...), ...

Returns
String

methodArgs

Added in API level 1
public Class[]<?> methodArgs ()

Specifies the signature of the method that is being tested, in terms of Java classes.

Returns
Class[]<?>

methodName

Added in API level 1
public String methodName ()

Specifies the name of the method that is being tested.

Returns
String