Annotation Interface Timed
@Target({METHOD,ANNOTATION_TYPE})
@Retention(RUNTIME)
@Documented
@Deprecated(since="7.0")
public @interface Timed
Deprecated.
Test annotation for use with JUnit 4 to indicate that a test method has to finish
execution in a specified time period.
If the test execution takes longer than the specified time period, then the test is considered to have failed.
Note that the time period includes execution of the test method itself, any repetitions of the test, and any set up or tear down of the test fixture.
This annotation may be used as a meta-annotation to create custom composed annotations.
- Since:
- 2.0
- Author:
- Rod Johnson, Sam Brannen
- See Also:
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionlong
Deprecated.The maximum amount of time (in milliseconds) that a test execution can take without being marked as failed due to taking too long.
-
Element Details
-
millis
long millisDeprecated.The maximum amount of time (in milliseconds) that a test execution can take without being marked as failed due to taking too long.
-
SpringExtension
and JUnit Jupiter