Home | History | Annotate | Download | only in model

Lines Matching defs:timeout

6  * Exception thrown when a test fails on timeout.
16 private final long timeout;
19 * Creates exception with a standard message "test timed out after [timeout] [timeUnit]"
21 * @param timeout the amount of time passed before the test was interrupted
22 * @param timeUnit the time unit for the timeout value
24 public TestTimedOutException(long timeout, TimeUnit timeUnit) {
26 timeout, timeUnit.name().toLowerCase()));
28 this.timeout = timeout;
35 return timeout;
39 * Gets the time unit for the timeout value