All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mockito.internal.InternalMockHandler Maven / Gradle / Ivy

There is a newer version: 5.11.0
Show newest version
/*
 * 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;

public interface InternalMockHandler extends MockHandler {

    MockCreationSettings getMockSettings();

    void setAnswersForStubbing(List> answers);

    InvocationContainer getInvocationContainer();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy