org.mockito.internal.InternalMockHandler 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;
import java.util.List;
import org.mockito.internal.stubbing.InvocationContainer;
import org.mockito.invocation.MockHandler;
import org.mockito.mock.MockCreationSettings;
import org.mockito.stubbing.Answer;
import org.mockito.stubbing.VoidMethodStubbable;
@SuppressWarnings("unchecked")
public interface InternalMockHandler extends MockHandler {
MockCreationSettings getMockSettings();
VoidMethodStubbable voidMethodStubbable(T mock);
void setAnswersForStubbing(List answers);
InvocationContainer getInvocationContainer();
}