Class SingleRegisteredInvocation
- java.lang.Object
-
- org.mockito.internal.verification.SingleRegisteredInvocation
-
- All Implemented Interfaces:
java.io.Serializable
,RegisteredInvocations
public class SingleRegisteredInvocation extends java.lang.Object implements RegisteredInvocations, java.io.Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private Invocation
invocation
-
Constructor Summary
Constructors Constructor Description SingleRegisteredInvocation()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(Invocation invocation)
void
clear()
java.util.List<Invocation>
getAll()
boolean
isEmpty()
void
removeLast()
-
-
-
Field Detail
-
invocation
private Invocation invocation
-
-
Method Detail
-
add
public void add(Invocation invocation)
- Specified by:
add
in interfaceRegisteredInvocations
-
removeLast
public void removeLast()
- Specified by:
removeLast
in interfaceRegisteredInvocations
-
getAll
public java.util.List<Invocation> getAll()
- Specified by:
getAll
in interfaceRegisteredInvocations
-
clear
public void clear()
- Specified by:
clear
in interfaceRegisteredInvocations
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interfaceRegisteredInvocations
-
-