FileDocCategorySizeDatePackage
TestTarget.javaAPI DocAndroid 1.5 API1974Wed May 06 22:41:02 BST 2009dalvik.annotation

TestTarget

public class TestTarget
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).
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
java.lang.StringconceptName()
Specifies the name of a concept being tested. Use this if {@code methodName} is not accurate enough. E.g. for {@link java.util.regex.Pattern#compile(String)} {@code 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, ...), ...

java.lang.Class[]methodArgs()
Specifies the signature of the method that is being tested, in terms of Java classes.

java.lang.StringmethodName()
Specifies the name of the method that is being tested.