org.junit.rules
Class Timeout.Builder

java.lang.Object
  extended by org.junit.rules.Timeout.Builder
Enclosing class:
Timeout

public static class Timeout.Builder
extends Object

Builder for Timeout.

Since:
4.12

Constructor Summary
protected Timeout.Builder()
           
 
Method Summary
 Timeout build()
          Builds a Timeout instance using the values in this builder.,
protected  boolean getLookingForStuckThread()
           
protected  long getTimeout()
           
protected  TimeUnit getTimeUnit()
           
 Timeout.Builder withLookingForStuckThread(boolean enable)
          Specifies whether to look for a stuck thread.
 Timeout.Builder withTimeout(long timeout, TimeUnit unit)
          Specifies the time to wait before timing out the test.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Timeout.Builder

protected Timeout.Builder()
Method Detail

withTimeout

public Timeout.Builder withTimeout(long timeout,
                                   TimeUnit unit)
Specifies the time to wait before timing out the test.

If this is not called, or is called with a timeout of 0, the returned Timeout rule 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 wait
unit - the time unit of the timeout argument
Returns:
this for method chaining.

getTimeout

protected long getTimeout()

getTimeUnit

protected 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 - true to enable the feature
Returns:
this for method chaining.

getLookingForStuckThread

protected boolean getLookingForStuckThread()

build

public Timeout build()
Builds a Timeout instance using the values in this builder.,



Copyright © 2002–2016 JUnit. All rights reserved.