Class NoMoreInteractions
- java.lang.Object
-
- org.mockito.internal.verification.NoMoreInteractions
-
- All Implemented Interfaces:
VerificationInOrderMode
,VerificationMode
public class NoMoreInteractions extends java.lang.Object implements VerificationMode, VerificationInOrderMode
-
-
Constructor Summary
Constructors Constructor Description NoMoreInteractions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VerificationMode
description(java.lang.String description)
Description will be prepended to the assertion error if verification fails.void
verify(VerificationData data)
Performs the verificationvoid
verifyInOrder(VerificationDataInOrder data)
-
-
-
Method Detail
-
verify
public void verify(VerificationData data)
Description copied from interface:VerificationMode
Performs the verification- Specified by:
verify
in interfaceVerificationMode
-
verifyInOrder
public void verifyInOrder(VerificationDataInOrder data)
- Specified by:
verifyInOrder
in interfaceVerificationInOrderMode
-
description
public VerificationMode description(java.lang.String description)
Description copied from interface:VerificationMode
Description will be prepended to the assertion error if verification fails.- Specified by:
description
in interfaceVerificationMode
- Parameters:
description
- The custom failure message- Returns:
- VerificationMode
-
-