33343536373839
/** * See the javadoc for {@link VerificationWithTimeout} */ Timeout(int treshhold, int millis, VerificationMode delegate) { this.impl = new VerificationWithTimeoutImpl(treshhold, millis, delegate); }
32333435363738
21222324252627
public Timeout(int millis, VerificationMode delegate) { this(10, millis, delegate); } Timeout(int treshhold, int millis, VerificationMode delegate) { this.impl = new VerificationWithTimeoutImpl(treshhold, millis, delegate); }