org.mockito.internal.verification.RegisteredInvocations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockito-all Show documentation
Show all versions of mockito-all Show documentation
Mock objects library for java
/*
* Copyright (c) 2007 Mockito contributors
* This program is made available under the terms of the MIT License.
*/
package org.mockito.internal.verification;
import org.mockito.internal.invocation.InvocationImpl;
import org.mockito.internal.util.ObjectMethodsGuru;
import org.mockito.internal.util.collections.ListUtil;
import org.mockito.internal.util.collections.ListUtil.Filter;
import org.mockito.invocation.Invocation;
import java.io.Serializable;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
public class RegisteredInvocations implements Serializable {
private static final long serialVersionUID = -2674402327380736290L;
private final List invocations = Collections.synchronizedList(new LinkedList());
public void add(Invocation invocation) {
invocations.add(invocation);
}
public void removeLast() {
//TODO: add specific test for synchronization of this block (it is tested by InvocationContainerImplTest at the moment)
synchronized (invocations) {
int last = invocations.size() - 1;
invocations.remove(last);
}
}
public List getAll() {
List copiedList;
synchronized (invocations) {
copiedList = new LinkedList(invocations) ;
}
return ListUtil.filter(copiedList, new RemoveToString());
}
public boolean isEmpty() {
return invocations.isEmpty();
}
private static class RemoveToString implements Filter {
public boolean isOut(Invocation invocation) {
return new ObjectMethodsGuru().isToString(invocation.getMethod());
}
}
}