Package org.junit.rules
Class Timeout.Builder
- java.lang.Object
-
- org.junit.rules.Timeout.Builder
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Timeoutbuild()Builds aTimeoutinstance using the values in this builder.,protected booleangetLookingForStuckThread()protected longgetTimeout()protected java.util.concurrent.TimeUnitgetTimeUnit()Timeout.BuilderwithLookingForStuckThread(boolean enable)Specifies whether to look for a stuck thread.Timeout.BuilderwithTimeout(long timeout, java.util.concurrent.TimeUnit unit)Specifies the time to wait before timing out the test.
-
-
-
Method Detail
-
withTimeout
public Timeout.Builder withTimeout(long timeout, java.util.concurrent.TimeUnit unit)
Specifies the time to wait before timing out the test.If this is not called, or is called with a
timeoutof0, the returnedTimeoutrule instance will cause the tests to wait forever to complete, however the tests will still launch from a separate thread. This can be useful for disabling timeouts in environments where they are dynamically set based on some property.- Parameters:
timeout- the maximum time to waitunit- the time unit of thetimeoutargument- Returns:
thisfor method chaining.
-
getTimeout
protected long getTimeout()
-
getTimeUnit
protected java.util.concurrent.TimeUnit getTimeUnit()
-
withLookingForStuckThread
public Timeout.Builder withLookingForStuckThread(boolean enable)
Specifies whether to look for a stuck thread. If a timeout occurs and this feature is enabled, the rule will look for a thread that appears to be stuck and dump its backtrace. This feature is experimental. Behavior may change after the 4.12 release in response to feedback.- Parameters:
enable-trueto enable the feature- Returns:
thisfor method chaining.
-
getLookingForStuckThread
protected boolean getLookingForStuckThread()
-
-