Annotation Type TimeoutSuite
Maximum execution time for an entire suite (including all hooks and tests).
Suite is defined as any class-scope
TestRule
s, BeforeClass
and AfterClass
hooks, suite class's constructor, instance-scope
TestRule
s, Before
and After
hooks and Test
methods.
The suite class's static initializer is not part of the measured code (if you have static initializers in your tests, get rid of them).
Overrides the global default RandomizedRunner.DEFAULT_TIMEOUT
or a
system property override SysGlobals.SYSPROP_TIMEOUT
.
- See Also:
-
Required Element Summary
Required Elements
-
Element Details
-
millis
int millisTimeout time in millis. The timeout time is approximate, it may take longer to actually abort the suite.
-