Package org.mockito.verification
Class After
- java.lang.Object
-
- org.mockito.internal.verification.VerificationWrapper<org.mockito.internal.verification.VerificationOverTimeImpl>
-
- org.mockito.verification.After
-
- All Implemented Interfaces:
VerificationAfterDelay
,VerificationMode
public class After extends org.mockito.internal.verification.VerificationWrapper<org.mockito.internal.verification.VerificationOverTimeImpl> implements VerificationAfterDelay
See the javadoc forVerificationAfterDelay
Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class. See javadoc for
VerificationWithTimeout
-
-
Constructor Summary
Constructors Constructor Description After(long delayMillis, VerificationMode verificationMode)
See the javadoc forVerificationAfterDelay
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected VerificationMode
copySelfWithNewVerificationMode(VerificationMode verificationMode)
String
toString()
-
Methods inherited from class org.mockito.internal.verification.VerificationWrapper
atLeast, atLeastOnce, atMost, atMostOnce, never, only, times, verify
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.mockito.verification.VerificationAfterDelay
atLeast, atLeastOnce, atMost, atMostOnce, never, only, times
-
Methods inherited from interface org.mockito.verification.VerificationMode
description, verify
-
-
-
-
Constructor Detail
-
After
public After(long delayMillis, VerificationMode verificationMode)
See the javadoc forVerificationAfterDelay
Typically, you won't use this class explicitly. Instead use timeout() method on Mockito class. See javadoc for
VerificationWithTimeout
-
-
Method Detail
-
copySelfWithNewVerificationMode
protected VerificationMode copySelfWithNewVerificationMode(VerificationMode verificationMode)
- Specified by:
copySelfWithNewVerificationMode
in classorg.mockito.internal.verification.VerificationWrapper<org.mockito.internal.verification.VerificationOverTimeImpl>
-
-