@Target(value={METHOD,ANNOTATION_TYPE})
@Retention(value=RUNTIME)
@Documented
public @interface Timed
If the text 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.
As of Spring Framework 4.0, this annotation may be used as a meta-annotation to create custom composed annotations.
Repeat
,
SpringJUnit4ClassRunner
,
SpringMethodRule
,
SpringFailOnTimeout
Modifier and Type | Required Element and Description |
---|---|
long |
millis
The maximum amount of time (in milliseconds) that a test execution can
take without being marked as failed due to taking too long.
|