1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.stubbing;
6
7import org.mockito.invocation.Invocation;
8
9import java.util.List;
10
11//TODO move to different package
12public interface InvocationContainer {
13    List<Invocation> getInvocations();
14
15    List<StubbedInvocationMatcher> getStubbedInvocations();
16}
17