org.testinium.annotations
Annotation Type Testable


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

Used to annotate testable methods

Version:
1.0
Author:
Thierry Janaudy janaudy@testinium.org

Optional Element Summary
 java.lang.String[] dependsOn
          dependsOn
 int numberOfInvocations
          numberOfInvocations
 long timeOut
          Specifies how much time in milliseconds Testinium should wait before marking this method as failed
 

dependsOn

public abstract java.lang.String[] dependsOn
dependsOn

Returns:
the dependend methods this method depends on
Default:
{}

numberOfInvocations

public abstract int numberOfInvocations
numberOfInvocations

Returns:
1 by default
Default:
1

timeOut

public abstract long timeOut
Specifies how much time in milliseconds Testinium should wait before marking this method as failed

Returns:
Long.MAX_VALUE by default
See Also:
Long.MAX_VALUE
Default:
9223372036854775807L