Build 1.0_r1(from source)

dalvik.annotation
Annotation Type TestInfo


@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface TestInfo

Defines an annotation for test methods that allow, among other things, to link the test to the method that is being tested.


Required Element Summary
 TestTarget[] targets
          Specifies an array of target methods.
 
Optional Element Summary
 String notes
          Specifies noteworthy plain-text information about the test, like whether it is testing a specific parameter combination or something.
 TestStatus status
          Specifies the current status of the test, as determined by a reviewer.
 

Element Detail

targets

public abstract TestTarget[] targets
Specifies an array of target methods.

status

public abstract TestStatus status
Specifies the current status of the test, as determined by a reviewer.

Default:
dalvik.annotation.TestStatus.TBR

notes

public abstract String notes
Specifies noteworthy plain-text information about the test, like whether it is testing a specific parameter combination or something.

Default:
""

Build 1.0_r1(from source)

Please submit a feedback, bug or feature