org.mockito.verification.Timeout Maven / Gradle / Ivy
Show all versions of mockito-all Show documentation
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.verification;
import org.mockito.exceptions.Reporter;
import org.mockito.internal.util.Timer;
import org.mockito.internal.verification.VerificationOverTimeImpl;
/**
* See the javadoc for {@link VerificationWithTimeout}
*
* Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
* See javadoc for {@link VerificationWithTimeout}
*/
public class Timeout extends VerificationWrapper implements VerificationWithTimeout {
/**
* See the javadoc for {@link VerificationWithTimeout}
*
* Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class.
* See javadoc for {@link VerificationWithTimeout}
*/
public Timeout(long millis, VerificationMode delegate) {
this(10, millis, delegate);
}
/**
* See the javadoc for {@link VerificationWithTimeout}
*/
Timeout(long pollingPeriodMillis, long millis, VerificationMode delegate) {
super(new VerificationOverTimeImpl(pollingPeriodMillis, millis, delegate, true));
}
/**
* See the javadoc for {@link VerificationWithTimeout}
*/
Timeout(long pollingPeriodMillis, long millis, VerificationMode delegate, Timer timer) {
super(new VerificationOverTimeImpl(pollingPeriodMillis, millis, delegate, true, timer));
}
@Override
protected VerificationMode copySelfWithNewVerificationMode(VerificationMode newVerificationMode) {
return new Timeout(wrappedVerification.getPollingPeriod(), wrappedVerification.getDuration(), newVerificationMode);
}
public VerificationMode atMost(int maxNumberOfInvocations) {
new Reporter().atMostAndNeverShouldNotBeUsedWithTimeout();
return null;
}
public VerificationMode never() {
new Reporter().atMostAndNeverShouldNotBeUsedWithTimeout();
return null;
}
}